feat: Add neovim config

This commit is contained in:
2025-09-08 10:48:06 +02:00
parent 1089137023
commit 693a0a7d15
14 changed files with 688 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
-- Use this file for any colorschemes that you wish to install.
-- Comes with catppuccin by default.
return {
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
config = function()
vim.cmd([[colorscheme catppuccin]])
end,
},
}