return { { "catppuccin/nvim", name = "catppuccin", lazy = false, priority = 1000, config = function() require("catppuccin").setup({ flavour = "mocha", -- latte, frappe, macchiato, mocha background = { light = "latte", dark = "mocha", }, transparent_background = false, term_colors = false, no_italic = true, -- force no italic no_bold = false, -- force no bold integrations = { barbar = true, cmp = true, fidget = true, gitsigns = true, leap = true, nvimtree = true, telescope = true, treesitter = true, vimwiki = true, }, native_lsp = { enabled = true, underlines = { errors = { "underline" }, hints = { "underline" }, warnings = { "underline" }, information = { "underline" }, }, }, indent_blankline = { enabled = true, }, }) vim.cmd("colorscheme catppuccin") end, }, }