commit 3f1213737a4105943c00661138b000ca6a4ae01d
parent 873cce3492077ad96ae67b037ef4e29d13058d25
Author: Daniel Moch <daniel@danielmoch.com>
Date: Sun, 21 Jan 2018 19:39:10 -0500
Tmux: Use environment for default shell
Diffstat:
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/.tmux.conf b/.tmux.conf
@@ -1,8 +1,11 @@
+#
+# ~/.tmux.conf
+#
set -g history-limit 20000
# Set default-command and default-shell to avoid spawning login shells
-set -g default-command "/bin/bash"
-set -g default-shell "/bin/bash"
+set -g default-command $SHELL
+set -g default-shell $SHELL
# Turn off escape delay, which is very annoying in Vim
set -s escape-time 0