dotfiles/.config/nvim/lua/plugins/theme.lua

14 lines
462 B
Lua

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,
}
}