This commit is contained in:
2023-12-03 01:32:15 +00:00
parent 56748d35b1
commit 051f5fbb24
11 changed files with 225 additions and 0 deletions

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

@@ -0,0 +1,9 @@
function Color(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
Color()