dotfiles/nvim/.config/nvim/lua/plugins/colorscheme.lua

10 lines
289 B
Lua

return {
"morhetz/gruvbox",
lazy = false, -- make sure we load this during startup if it is 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 gruvbox]])
end
}