From 4e0c1b07241e6d427b84b24e698eafbcec709601 Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Fri, 30 Aug 2024 23:07:37 -0700 Subject: [PATCH] fix: unreadable TODO comments Moved away from the transparency plugin and instead used the colorscheme's `transparent_background` option. --- config/default.nix | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/config/default.nix b/config/default.nix index 194c83b..5905320 100644 --- a/config/default.nix +++ b/config/default.nix @@ -15,6 +15,7 @@ colorschemes.catppuccin = { enable = true; settings.flavour = "mocha"; + settings.transparent_background = true; }; opts = { @@ -39,10 +40,6 @@ action = ":set rnu!"; key = "num"; } - { - action = ":TransparentToggle"; - key = "t"; - } ]; autoCmd = [ @@ -64,18 +61,5 @@ fugitive.enable = true; comment.enable = true; rustaceanvim.enable = true; - - /* - :TransparentEnable - :TransparentDisable - :TransparentToggle - */ - transparent = { - enable = true; - settings.exclude_groups = [ - "CursorLine" - "CursorLineNr" - ]; - }; }; }