1
0

Moved the after directory to lua/barink

This commit is contained in:
2024-04-06 22:44:20 +02:00
parent 9843cf6e0c
commit 1248080858
4 changed files with 37 additions and 0 deletions

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()