plugins and config

This commit is contained in:
2025-05-06 23:37:50 +02:00
parent 850670d44c
commit cd3a5784fb
7 changed files with 166 additions and 13 deletions

View File

@ -0,0 +1,17 @@
return {
"rebelot/kanagawa.nvim",
config = function()
require('kanagawa').setup({
compile=true,
transparent=true,
background = {
dark = "wave",
light = "lotus"
},
});
vim.cmd("colorscheme kanagawa");
end,
build = function()
vim.cmd("KanagawaCompile");
end,
}