From aa05c9f5a6ffb783285a043269397cf35666ee6e Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Tue, 25 Jun 2024 18:23:33 -0700 Subject: [PATCH] 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. --- private_dot_config/tmux/tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private_dot_config/tmux/tmux.conf b/private_dot_config/tmux/tmux.conf index 0e73b09..ae30a06 100644 --- a/private_dot_config/tmux/tmux.conf +++ b/private_dot_config/tmux/tmux.conf @@ -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