fix: unreadable TODO comments

Moved away from the transparency plugin and instead used the
colorscheme's `transparent_background` option.
This commit is contained in:
alejandro-angulo 2024-08-30 23:07:37 -07:00
parent 4ae16d3294
commit 4e0c1b0724
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6

View file

@ -15,6 +15,7 @@
colorschemes.catppuccin = { colorschemes.catppuccin = {
enable = true; enable = true;
settings.flavour = "mocha"; settings.flavour = "mocha";
settings.transparent_background = true;
}; };
opts = { opts = {
@ -39,10 +40,6 @@
action = "<cmd>:set rnu!<CR>"; action = "<cmd>:set rnu!<CR>";
key = "<leader>num"; key = "<leader>num";
} }
{
action = "<cmd>:TransparentToggle<CR>";
key = "<leader>t";
}
]; ];
autoCmd = [ autoCmd = [
@ -64,18 +61,5 @@
fugitive.enable = true; fugitive.enable = true;
comment.enable = true; comment.enable = true;
rustaceanvim.enable = true; rustaceanvim.enable = true;
/*
:TransparentEnable
:TransparentDisable
:TransparentToggle
*/
transparent = {
enable = true;
settings.exclude_groups = [
"CursorLine"
"CursorLineNr"
];
};
}; };
} }