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:
parent
bfb93522b7
commit
aa05c9f5a6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue