switch back to zsh

I like `xonsh` and all, but integrating it with neovim without incurring
a major performance penalty is difficult to say the least. I think
switching back to `zsh` is my best option to solve this issue for now.
This commit is contained in:
cswimr 2025-02-04 11:39:40 -06:00
parent 184afebce1
commit 95ac8522db
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
9 changed files with 362 additions and 14 deletions

View file

@ -2,6 +2,9 @@
programs.kitty = {
enable = true;
themeFile = "Catppuccin-Mocha";
shellIntegration = {
mode = "no-rc";
};
settings = {
# tab bar styling
tab_bar_min_tabs = 1;
@ -14,7 +17,7 @@
inactive_tab_foreground = "#1e1e2e";
inactive_tab_background = "#b4befe";
inactive_tab_font_style = "normal";
tab_title_template = "{title.removeprefix('/run/current-system/sw/bin/nix-shell-info | ')}{' ({})'.format(num_windows) if num_windows > 1 else ''}";
tab_title_template = "{title}{' ({})'.format(num_windows) if num_windows > 1 else ''}";
enabled_layouts = "grid, tall, stack";