return { "catppuccin/nvim", name = "catppuccin", lazy = false, priority = 1000, config = function() vim.opt.fillchars:append { horiz = "━", horizup = "┻", horizdown = "┳", vert = "┃", vertleft = "┨", vertright = "┣", verthoriz = "╋", } require("catppuccin").setup { flavour = "macchiato", transparent_background = true, term_colors = true, integrations = { gitsigns = true, indent_blankline = { enabled = true, colored_indent_levels = true, }, cmp = true, native_lsp = { enabled = true, }, notify = true, nvimtree = true, treesitter = true, treesitter_context = true, telescope = true, lsp_trouble = true, }, } vim.cmd "colorscheme catppuccin" end, }