ghostty and nvim

This commit is contained in:
2026-06-22 17:01:45 -05:00
parent 487f2817db
commit 319b1a9c55
21 changed files with 704 additions and 0 deletions
@@ -0,0 +1,20 @@
return {
-- Catppuccin theme with transparency
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
opts = {
flavour = "mocha", -- Choose "latte", "frappe", "macchiato", or "mocha"
transparent_background = true,
custom_highlights = function(colors)
return {
VertSplit = { fg = colors.overlay0 },
}
end,
},
},
-- Override LazyVim's default colorscheme
{ "LazyVim/LazyVim", opts = { colorscheme = "catppuccin" } },
}