This commit is contained in:
2025-06-05 22:05:05 -05:00
parent 6749dca60a
commit 5d3ed8b12a
4 changed files with 35 additions and 51 deletions

View File

@@ -11,21 +11,6 @@ if not vim.loop.fs_stat(lazypath) then
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup("shelbybark.plugins")
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({ { import = "shelbybark.plugins" }, { import = "shelbybark.plugins.lsp" } }, {
checker = {
enabled = true,

View File

@@ -34,13 +34,13 @@ return {
" ╚════██║██╔══██║██╔══╝ ██║ ██╔══██╗ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗██╔═██╗ ",
" ███████║██║ ██║███████╗███████╗██████╔╝ ██║ ██████╔╝██║ ██║██║ ██║██║ ██╗",
" ╚══════╝╚═╝ ╚═╝╚══════╝╚══════╝╚═════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝",
" ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗",
" ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║",
" ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║",
" ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║",
" ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║",
" ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝",
" ",
" ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗",
" ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║",
" ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║",
" ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║",
" ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║",
" ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝",
" ",
}
-- Set menu

View File

@@ -4,38 +4,18 @@ return {
name = "catppuccin",
priority = 1000,
config = function()
require('catppuccin').setup {
require('catppuccin').setup ({
flavour = "mocha", -- latte, frappe, macchiato, mocha
custom_highlights = function(colors)
return {
LineNr = { fg = '#838DA0', bg = '#495060', },
}
end
}
return {
LineNr = { fg = '#838DA0', bg = '#495060' }
}
end,
})
-- load the colorscheme here
-- vim.cmd([[colorscheme catppuccin]])
require('catppuccin').load()
end
}
-- {
-- "navarasu/onedark.nvim",
-- priority = 1000, -- make sure to load this before all the other start plugins
-- config = function()
-- require('onedark').setup {
-- style = 'deep',
-- -- Custom Highlights --
-- colors = {
-- line_bg = "#495060", -- define a new color
-- line_fg = "#838DA0", -- define a new color
-- }, -- Override default colors
-- highlights = {
-- ["LineNr"] = {fg = '$line_fg', bg = '$line_bg', fmt = 'none'},
-- }, -- Override highlight groups
-- }
-- -- Enable theme
-- require('onedark').load()
-- end
-- }
vim.cmd([[colorscheme catppuccin]])
end,
},
-- {
-- "folke/tokyonight.nvim",
-- priority = 1000, -- make sure to load this before all the other start plugins
@@ -76,4 +56,23 @@ return {
-- vim.cmd([[colorscheme tokyonight]])
-- end,
-- },
-- {
-- "navarasu/onedark.nvim",
-- priority = 1000, -- make sure to load this before all the other start plugins
-- config = function()
-- require('onedark').setup {
-- style = 'deep',
-- -- Custom Highlights --
-- colors = {
-- line_bg = "#495060", -- define a new color
-- line_fg = "#838DA0", -- define a new color
-- }, -- Override default colors
-- highlights = {
-- ["LineNr"] = {fg = '$line_fg', bg = '$line_bg', fmt = 'none'},
-- }, -- Override highlight groups
-- }
-- -- Enable theme
-- require('onedark').load()
-- end
-- }
}