lazy-nvim migration with basic plugins

This commit is contained in:
pfych 2025-02-21 18:38:25 +11:00
parent b02e4dda6c
commit e2a8848a27
7 changed files with 109 additions and 75 deletions

View file

@ -0,0 +1,28 @@
return {
"catppuccin/nvim",
name = "catppuccin",
lazy = false,
priority = 1000,
config = function() require("catppuccin").setup({
flavour = "mocha",
background = {
light = "latte",
dark = "mocha",
},
color_overrides = {
mocha = {
base = "#000000",
mantle = "#000000"
},
},
transparent_background = false,
no_italic = false,
no_bold = false,
styles = {
comments = { "italic" },
},
integrations = {
cmp = true,
},
}) end,
}