update nvim and hypr conf

This commit is contained in:
2026-06-22 13:33:12 +02:00
parent 04d720f6c8
commit b80cd3136b
10 changed files with 140 additions and 112 deletions

View File

@@ -6,7 +6,21 @@ return
lazy = false,
config = function()
require("catppuccin").setup({
transparent_background = true,
transparent_background = false,
custom_highlights = function(colors)
return {
Normal = { bg = colors.base },
NormalNC = { bg = colors.mantle },
WinSeparator = { fg = colors.surface1, bg = colors.mantle },
StatusLine = { fg = colors.text, bg = colors.surface0 },
StatusLineNC = { fg = colors.overlay0, bg = colors.mantle },
CursorLine = { bg = colors.surface0 },
}
end
})
vim.cmd.colorscheme "catppuccin"