Disable zellij shell integration

zellij integration was causing it to start on startup

Turn off background in btop (for terminal transparency)
This commit is contained in:
Evie Litherland-Smith 2023-12-16 23:29:45 +00:00
parent 1f331d1352
commit e8ec776c2b

View file

@ -29,9 +29,10 @@
"bat/themes/tokyonight_night.tmTheme".source = ./tokyonight_night.tmTheme;
};
programs = {
bat.enable = true;
bash.enable = true;
fish.enable = true;
bat.enable = true;
zellij.enable = true;
zsh.initExtra = ''
xdg-query-program () {
FILETYPE=$(xdg-mime query filetype $@)
@ -71,6 +72,7 @@
enable = true;
settings = {
color_theme = "tokyo-night";
theme_background = false;
graph_symbol = "braille";
update_ms = 1000;
proc_tree = true;
@ -242,10 +244,5 @@
};
};
};
zellij = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
};
};
}