mirror of
https://github.com/avinal/dotfiles.git
synced 2026-07-04 15:30:08 +05:30
24 lines
420 B
Lua
24 lines
420 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,
|
||
|
|
}
|