feat(nvim): add colorscheme and diffview plugins

This commit is contained in:
yeti 2025-05-13 12:20:17 +01:00
parent c544d8a7a1
commit 470112434f
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,12 @@
return {
-- catppuccin
{ "catppuccin/nvim", name = "catppuccin", priority = 1000 },
-- Configure LazyVim to load gruvbox
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin",
},
},
}

View File

@ -0,0 +1,4 @@
return {
"sindrets/diffview.nvim",
opts = {},
}