Fix using fish for tmux on multiple different systems

Previously I used `default-shell` which must be a full path. On
different systems that path is different (specifically NixOS). Instead
we can use `default-command` which can execute anything from the PATH,
which is what we want.
This commit is contained in:
Eli Ribble 2024-06-25 18:23:33 -07:00
parent bfb93522b7
commit aa05c9f5a6
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
set-option -g default-shell /usr/bin/fish
set-option -g default-command fish
bind-key h select-pane -L
bind-key j select-pane -D