converted from packer to lazy
This commit is contained in:
parent
8c70ffcc1f
commit
7b6c664ceb
14 changed files with 137 additions and 96 deletions
14
.config/nvim/lua/plugins/theme.lua
Normal file
14
.config/nvim/lua/plugins/theme.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
return {
|
||||
-- the colorscheme should be available when starting neovim
|
||||
{
|
||||
--"folke/tokyonight.nvim",
|
||||
"shaunsingh/nord.nvim",
|
||||
lazy = false, -- make sure we load this during the startup if its your main colorscheme
|
||||
priority = 1000, -- make sure to load this before all the other start plugins
|
||||
config = function()
|
||||
-- load the colorscheme here
|
||||
--vim.cmd([[colorscheme tokyonight]])
|
||||
vim.cmd([[colorscheme nord]])
|
||||
end,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue