Merge pull request #4 from albert-yu/add-kanagawa-theme

Add kanagawa theme
This commit is contained in:
Albert Yu 2025-08-29 13:19:16 -04:00 committed by GitHub
commit 373f27c705
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 1 deletions

View File

@ -921,7 +921,17 @@ require('lazy').setup({
'EdenEast/nightfox.nvim', 'EdenEast/nightfox.nvim',
priority = 1000, priority = 1000,
config = function() config = function()
vim.cmd.colorscheme 'nightfox' -- vim.cmd.colorscheme 'nightfox'
end,
},
{
'rebelot/kanagawa.nvim',
priority = 1000,
config = function()
require('kanagawa').setup {
compile = true,
}
vim.cmd.colorscheme 'kanagawa'
end, end,
}, },