add nvim config with kickstart-modular

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
2024-06-07 18:17:04 +05:30
parent fd6bf82079
commit 3a0c68b8d9
27 changed files with 1299 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {
{ 'wakatime/vim-wakatime', lazy = false },
}
@@ -0,0 +1 @@
return {}
@@ -0,0 +1,23 @@
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,
}