updates
This commit is contained in:
@@ -11,21 +11,6 @@ if not vim.loop.fs_stat(lazypath) then
|
|||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
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" } }, {
|
require("lazy").setup({ { import = "shelbybark.plugins" }, { import = "shelbybark.plugins.lsp" } }, {
|
||||||
checker = {
|
checker = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
|
|||||||
@@ -34,13 +34,13 @@ return {
|
|||||||
" ╚════██║██╔══██║██╔══╝ ██║ ██╔══██╗ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗██╔═██╗ ",
|
" ╚════██║██╔══██║██╔══╝ ██║ ██╔══██╗ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗██╔═██╗ ",
|
||||||
" ███████║██║ ██║███████╗███████╗██████╔╝ ██║ ██████╔╝██║ ██║██║ ██║██║ ██╗",
|
" ███████║██║ ██║███████╗███████╗██████╔╝ ██║ ██████╔╝██║ ██║██║ ██║██║ ██╗",
|
||||||
" ╚══════╝╚═╝ ╚═╝╚══════╝╚══════╝╚═════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝",
|
" ╚══════╝╚═╝ ╚═╝╚══════╝╚══════╝╚═════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝",
|
||||||
" ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗",
|
" ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗",
|
||||||
" ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║",
|
" ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║",
|
||||||
" ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║",
|
" ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║",
|
||||||
" ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║",
|
" ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║",
|
||||||
" ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║",
|
" ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║",
|
||||||
" ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝",
|
" ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝",
|
||||||
" ",
|
" ",
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Set menu
|
-- Set menu
|
||||||
|
|||||||
@@ -4,38 +4,18 @@ return {
|
|||||||
name = "catppuccin",
|
name = "catppuccin",
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
config = function()
|
config = function()
|
||||||
require('catppuccin').setup {
|
require('catppuccin').setup ({
|
||||||
flavour = "mocha", -- latte, frappe, macchiato, mocha
|
flavour = "mocha", -- latte, frappe, macchiato, mocha
|
||||||
custom_highlights = function(colors)
|
custom_highlights = function(colors)
|
||||||
return {
|
return {
|
||||||
LineNr = { fg = '#838DA0', bg = '#495060', },
|
LineNr = { fg = '#838DA0', bg = '#495060' }
|
||||||
}
|
}
|
||||||
end
|
end,
|
||||||
}
|
})
|
||||||
-- load the colorscheme here
|
-- load the colorscheme here
|
||||||
-- vim.cmd([[colorscheme catppuccin]])
|
vim.cmd([[colorscheme catppuccin]])
|
||||||
require('catppuccin').load()
|
end,
|
||||||
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
|
|
||||||
-- }
|
|
||||||
-- {
|
-- {
|
||||||
-- "folke/tokyonight.nvim",
|
-- "folke/tokyonight.nvim",
|
||||||
-- priority = 1000, -- make sure to load this before all the other start plugins
|
-- priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
@@ -76,4 +56,23 @@ return {
|
|||||||
-- vim.cmd([[colorscheme tokyonight]])
|
-- vim.cmd([[colorscheme tokyonight]])
|
||||||
-- end,
|
-- 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
|
||||||
|
-- }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user