1
0
This commit is contained in:
2024-03-24 16:31:02 +01:00
commit 1f08b9e9c4
6 changed files with 139 additions and 0 deletions

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

@ -0,0 +1,10 @@
function ColorMyPencils(color)
color = color or "tokyonight"
vim.cmd.colorscheme(color)
-- make transparent BG
vim.api.nvim_set_hl(0, "Normal", {bg = "none"})
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none"})
end
-- ColorMyPencils()