20 lines
395 B
Lua
20 lines
395 B
Lua
-- 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,
|
|
},
|
|
} |