aboutsummaryrefslogtreecommitdiff
path: root/config/tmux
diff options
context:
space:
mode:
authorCharles Cabergs <charles.cabergs@colruytgroup.com>2023-11-03 17:01:56 +0100
committerCharles Cabergs <charles.cabergs@colruytgroup.com>2023-11-03 17:01:56 +0100
commit1fb20dea7cb204046f247b6c82ab603a7cbbbfaf (patch)
tree2c8b8cca13a3f74ca7eb9916c2d0a28776e010c9 /config/tmux
parent663b1f5df68de0e9d23d1874ec7942df380ecab5 (diff)
parent38487dfb1f7c245fbf82735a0ee17313258a8710 (diff)
downloaddotfiles-1fb20dea7cb204046f247b6c82ab603a7cbbbfaf.tar.gz
dotfiles-1fb20dea7cb204046f247b6c82ab603a7cbbbfaf.tar.bz2
dotfiles-1fb20dea7cb204046f247b6c82ab603a7cbbbfaf.zip
Merge branch 'master' of https://github.com/cacharle/dotfiles
Diffstat (limited to 'config/tmux')
-rw-r--r--config/tmux/tmux.conf7
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'