nvim-config/lua/custom/plugins/colorscheme.lua
asthetik 760c80cbaa update custome configuration
add colorscheme
2024-04-03 01:24:42 +08:00

9 lines
175 B
Lua

return {
'RRethy/base16-nvim',
lazy = false,
priority = 1000,
config = function()
-- load the colorscheme here
vim.cmd [[colorscheme base16-onedark]]
end,
}