File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ inputs: let
91
91
enable = true ;
92
92
name = "catppuccin" ;
93
93
style = "mocha" ;
94
+ transparent = false ;
94
95
} ;
95
96
vim . autopairs . enable = true ;
96
97
Original file line number Diff line number Diff line change 32
32
-- Catppuccin theme
33
33
require('catppuccin').setup {
34
34
flavour = "${ style } ",
35
- transparent_background = " ${ builtins . toString transparent } " ,
35
+ transparent_background = ${ lib . boolToString transparent } ,
36
36
integrations = {
37
37
nvimtree = {
38
38
enabled = true,
Original file line number Diff line number Diff line change 40
40
config = mkIf cfg . enable {
41
41
vim . startPlugins = [ cfg . name ] ;
42
42
vim . luaConfigRC . themeSetup = nvim . dag . entryBefore [ "theme" ] cfg . extraConfig ;
43
- vim . luaConfigRC . theme = supported_themes . ${ cfg. name } . setup { style = cfg . style ; } ;
43
+ vim . luaConfigRC . theme = supported_themes . ${ cfg. name } . setup ( with cfg ; {
44
+ inherit style transparent ;
45
+ } ) ;
44
46
} ;
45
47
}
You can’t perform that action at this time.
0 commit comments