Files
dotfiles/.config/nvim/lua/custom/plugins/themes.lua
T
avinal 4555248b72 update: create configuration for new tools
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>

rh-pre-commit.version: 2.3.2
rh-pre-commit.check-secrets: ENABLED
2025-06-27 19:51:11 +05:30

26 lines
449 B
Lua

return {
'EdenEast/nightfox.nvim',
priority = 1000,
init = function()
vim.opt.background = 'dark'
vim.cmd.colorscheme 'carbonfox'
end,
config = function()
require('nightfox').setup {
options = {
styles = {
comments = 'italic',
},
},
-- groups = {
-- carbonfox = {
-- string = { fg = 'white' },
-- },
-- },
}
end,
}
--- vim: ts=2 sts=2 sw=2 et