From 0c05f8a185e61cc67199bf4b0b3b61933d292b0f Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Mon, 29 May 2023 22:27:41 +0200 Subject: [PATCH] feat(catppuccin): enabled integration for plugins included with LazyVim --- lua/lazyvim/plugins/colorscheme.lua | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/lua/lazyvim/plugins/colorscheme.lua b/lua/lazyvim/plugins/colorscheme.lua index eca05e06..a9d97b41 100644 --- a/lua/lazyvim/plugins/colorscheme.lua +++ b/lua/lazyvim/plugins/colorscheme.lua @@ -12,5 +12,34 @@ return { "catppuccin/nvim", lazy = true, name = "catppuccin", + opts = { + integrations = { + alpha = true, + cmp = true, + gitsigns = true, + illuminate = true, + indent_blankline = { enabled = true }, + lsp_trouble = true, + mini = true, + native_lsp = { + enabled = true, + underlines = { + errors = { "undercurl" }, + hints = { "undercurl" }, + warnings = { "undercurl" }, + information = { "undercurl" }, + }, + }, + navic = { enabled = true }, + neotest = true, + noice = true, + notify = true, + nvimtree = true, + semantic_tokens = true, + telescope = true, + treesitter = true, + which_key = true, + }, + }, }, }