from-scratch rewrite (#1)

Reviewed-on: #1
This commit is contained in:
2025-06-26 08:53:33 +02:00
parent cc39bf4e49
commit 364c2d97f5
48 changed files with 1422 additions and 734 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,
}