Files
nvim/lua/plugins/colorscheme.lua
2024-03-26 22:03:40 +01:00

11 lines
278 B
Lua

return {
'rebelot/kanagawa.nvim',
priority = 1000, -- make sure to load this before all the other start plugins
init = function()
vim.cmd.colorscheme 'kanagawa'
-- You can configure highlights by doing something like
-- vim.cmd.hi 'Comment gui=none'
end,
}