This commit is contained in:
2026-02-17 20:56:53 +01:00
parent 6c7e442056
commit 4519c8bf89
23 changed files with 895 additions and 0 deletions

8
after/plugin/colors.lua Normal file
View File

@@ -0,0 +1,8 @@
function ColorMyPencils(color)
color = color or "rose-pine"
vim.cmd.colorscheme(color)
vim.api.nvim_set_hl(0,"Normal", { bg = "none" })
vim.api.nvim_set_hl(0,"NormalFloat", { bg = "none" })
end
ColorMyPencils();