From 1566b7fdc1087e38f0bc590ce08c7e0a2969e15a Mon Sep 17 00:00:00 2001 From: Segcolt Date: Fri, 16 Jan 2026 17:19:54 -0300 Subject: [PATCH] Add transparencty to the config --- lua/community.lua | 25 +++++++++++++------------ lua/plugins/astrocore.lua | 1 + 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/lua/community.lua b/lua/community.lua index dd2dc74..2e0f945 100644 --- a/lua/community.lua +++ b/lua/community.lua @@ -2,18 +2,19 @@ return { "AstroNvim/astrocommunity", { import = "astrocommunity.colorscheme.catppuccin" }, - -- { - -- "catppuccin", - -- opts = { - -- integrations = { - -- ts_rainbow2 = true, - -- treesitter = true, - -- } - -- }, - -- config = function() - -- vim.api.nvim_set_hl(0, "LspInlayHint", { bg = "#1e1e2f" }) - -- end - -- }, + { + "catppuccin", + opts = { + integrations = { + ts_rainbow2 = true, + treesitter = true, + }, + transparent_background = true + }, + -- config = function() + -- vim.api.nvim_set_hl(0, "LspInlayHint", { bg = "#1e1e2f" }) + -- end + }, -- { import = "astrocommunity.pack.cpp" }, diff --git a/lua/plugins/astrocore.lua b/lua/plugins/astrocore.lua index c061409..db2530c 100644 --- a/lua/plugins/astrocore.lua +++ b/lua/plugins/astrocore.lua @@ -42,6 +42,7 @@ return { signcolumn = "auto", -- sets vim.opt.signcolumn to auto wrap = false, -- sets vim.opt.wrap expandtab = false, + cursorline = false, tabstop = 8, shiftwidth = 8, showtabline = 8,