nvim: add color scheme

This commit is contained in:
insects 2025-04-11 11:49:21 +02:00
parent c7b89f343d
commit 5678612f32
2 changed files with 15 additions and 2 deletions

View file

@ -1,6 +1,14 @@
-- Base plugins and libraries
return {
{
"catppuccin/nvim",
priority = 1000,
lazy = false,
config = function()
vim.cmd([[colorscheme catppuccin-mocha]])
end,
},
"nvim-lua/plenary.nvim",
{
"folke/snacks.nvim",
@ -78,4 +86,10 @@ return {
"m4xshen/autoclose.nvim",
opts = {},
},
{
"wsdjeg/rooter.nvim",
opts = {
root_pattern = { ".git/" },
},
},
}