fix: catppucin/neovide terminal colors

This commit is contained in:
Ward Truyen
2025-11-27 13:17:37 +01:00
parent dec548e1d7
commit 470b1012f1
2 changed files with 5 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ require("ward.lazy")
--$ Neovide configuration if used
if vim.g.neovide then
vim.g.neovide_opacity = 0.7
vim.g.neovide_opacity = 0.75
vim.g.neovide_window_blurred = true
vim.o.guifont = "Source Code Pro:h14"
end

View File

@@ -6,7 +6,10 @@ return {
priority = 1000,
config = function()
require("catppuccin").setup({})
require("catppuccin").setup({
transparent_backgroud = true,
term_colors = true,
})
vim.cmd.colorscheme("catppuccin")
LineNumberColors()
end,