Merge pull request #6 from albert-yu/alabaster-theme

This commit is contained in:
Albert Yu 2025-10-17 23:48:58 -04:00 committed by GitHub
commit 533f3b2304
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 4 deletions

View File

@ -920,9 +920,7 @@ require('lazy').setup({
{ {
'EdenEast/nightfox.nvim', 'EdenEast/nightfox.nvim',
priority = 1000, priority = 1000,
config = function() config = function() end,
-- vim.cmd.colorscheme 'nightfox'
end,
}, },
{ {
'rebelot/kanagawa.nvim', 'rebelot/kanagawa.nvim',
@ -931,7 +929,12 @@ require('lazy').setup({
require('kanagawa').setup { require('kanagawa').setup {
compile = true, compile = true,
} }
vim.cmd.colorscheme 'kanagawa' end,
},
{
'p00f/alabaster.nvim',
config = function()
vim.cmd.colorscheme 'alabaster'
end, end,
}, },