Recreate neovim configuration

This commit is contained in:
Matthew Roland
2025-08-24 22:33:05 -05:00
parent 3dc574a056
commit ae8de91f72
25 changed files with 551 additions and 1091 deletions

View File

@@ -0,0 +1,9 @@
return {
'catppuccin/nvim',
priority = 1000, -- Make sure to load this before all the other start plugins.
init = function()
vim.cmd.colorscheme 'catppuccin-mocha'
vim.cmd.hi 'Comment gui=none'
end,
}