adding in new color scheme

This commit is contained in:
talksik
2023-06-16 14:42:38 -07:00
parent 4319ee8436
commit ce1ea93cbc
6 changed files with 15 additions and 31 deletions
+4 -8
View File
@@ -1,14 +1,10 @@
require('rose-pine').setup({
disable_background = true
require('catppuccin').setup({
flavour = "latte"
})
function ColorMyPencils(color)
color = color or "rose-pine"
function ColorMyPencils(color)
color = color or "catppuccin"
vim.cmd.colorscheme(color)
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end
ColorMyPencils()