Initial commit; lsp treesitter telescope undotree formatter colors

This commit is contained in:
2023-04-09 23:22:45 +02:00
commit e2780cfe9d
14 changed files with 159 additions and 0 deletions

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

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