Add alabaster theme

This commit is contained in:
Albert Yu 2025-10-16 09:39:11 -04:00
parent 52f292a9aa
commit 807bf312b2
1 changed files with 7 additions and 4 deletions

View File

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