feat nvim: 設定nordfox colorscheme

This commit is contained in:
Yuan Chiu 2025-04-28 18:20:49 +08:00
parent ffbaf70b24
commit 364fbb45d8
2 changed files with 21 additions and 1 deletions

View File

@ -29,7 +29,7 @@ require("lazy").setup({
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
-- install = { colorscheme = { "habamax" } },
install = { colorscheme = { "habamax" } },
-- automatically check for plugin updates
checker = { enabled = true },
})

View File

@ -0,0 +1,20 @@
-- if true then return {} end
return {
{
"EdenEast/nightfox.nvim",
lazy = false,
priority = 1000,
config = function()
require("nightfox").setup({
options = {
styles = {
comments = "italic",
keywords = "bold",
types = "italic,bold",
},
},
})
vim.cmd("colorscheme nordfox")
end,
},
}