diff options
Diffstat (limited to 'config/tmux')
| -rw-r--r-- | config/tmux/tmux.conf | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 5e72d64..8e10065 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -28,7 +28,12 @@ bind 'c' new-window -c "#{pane_current_path}" bind R source-file ~/.config/tmux/tmux.conf set -g status-right-length 100 -set -g default-shell /usr/local/bin/fish +if-shell -b '[ "$(uname)" = Darwin ]' { + set -g default-shell /usr/local/bin/fish +} +if-shell -b '[ "$(uname)" = Linux ]' { + set -g default-shell /usr/bin/fish +} set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'egel/tmux-gruvbox' |
