From 23dce805c6691540a69a4706c2df2816ba6daf2e Mon Sep 17 00:00:00 2001 From: Ben Woodward Date: Wed, 19 Jul 2023 11:53:14 +0100 Subject: [PATCH] fix(catppuccin): enable alpha.nvim by default (#459) * refactor(catppuccin): sort integrations * feat(catppuccin): enable alpha.nvim support --- lua/astrocommunity/colorscheme/catppuccin/init.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/astrocommunity/colorscheme/catppuccin/init.lua b/lua/astrocommunity/colorscheme/catppuccin/init.lua index b027ce435..8d2f5b4db 100644 --- a/lua/astrocommunity/colorscheme/catppuccin/init.lua +++ b/lua/astrocommunity/colorscheme/catppuccin/init.lua @@ -3,16 +3,17 @@ return { name = "catppuccin", opts = { integrations = { - nvimtree = false, - ts_rainbow = false, + alpha = true, aerial = true, dap = { enabled = true, enable_ui = true }, mason = true, neotree = true, notify = true, + nvimtree = false, semantic_tokens = true, symbols_outline = true, telescope = true, + ts_rainbow = false, which_key = true, }, },