vanadium: configure fish as login shell

This commit is contained in:
Primrose 2025-04-02 01:31:43 +02:00
parent d481affc6d
commit db9717f98a
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 13 additions and 11 deletions

View file

@ -23,17 +23,13 @@ in {
];
programs = {
fd.enable = true;
tmux = {
extraConfig = lib.mkBefore ''
set -g default-command "${fishExe}" # Use fish
set -g default-shell "${fishExe}"
tmux.extraConfig = lib.mkBefore ''
# sessionizer binds
bind -n C-f run-shell "tmux new-window ${fishExe} -c tmux-sessionizer"
bind -n C-g run-shell "${fishExe} -c tmux-home"
bind s run-shell "${fishExe} -c tmux-last"
'';
# sessionizer binds
bind -n C-f run-shell "tmux new-window ${fishExe} -c tmux-sessionizer"
bind -n C-g run-shell "${fishExe} -c tmux-home"
bind s run-shell "${fishExe} -c tmux-last"
'';
};
fzf = {
enable = true;
enableFishIntegration = true;