mirror of
https://github.com/avinal/dotfiles.git
synced 2026-07-04 07:20:09 +05:30
567d248572
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
25 lines
448 B
Lua
25 lines
448 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
|