dev(theme): disable transparency support by default

This commit is contained in:
NotAShelf 2023-04-11 13:57:47 +03:00
commit 158a74e00d
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
3 changed files with 14 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{
{lib}: {
onedark = {
setup = {style ? "dark"}: ''
-- OneDark theme
@ -20,11 +20,14 @@
};
catppuccin = {
setup = {style ? "mocha"}: ''
setup = {
style ? "mocha",
transparent ? false,
}: ''
-- Catppuccin theme
require('catppuccin').setup {
flavour = "${style}",
transparent_background = true,
transparent_background = "${builtins.toString transparent}",
integrations = {
nvimtree = {
enabled = true,