aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-06-30 04:45:14 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-06-30 04:45:14 +1200
commit519ff211bf1d21841a91bb82845f828f5412eb47 (patch)
tree27f03476eb709b90a28c8ab2e61fa5291a88c339
parentAdd oii(1df) (diff)
downloaddotfiles-519ff211bf1d21841a91bb82845f828f5412eb47.tar.gz
dotfiles-519ff211bf1d21841a91bb82845f828f5412eb47.zip
Double-quote shell config in tmux
Otherwise it shows up as '$SHELL' in window titles
-rw-r--r--tmux/tmux.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf
index 09ba0251..4e277515 100644
--- a/tmux/tmux.conf
+++ b/tmux/tmux.conf
@@ -13,7 +13,7 @@ set-environment -gru WINDOWID
set-option -g update-environment ''
# Setting this makes each new pane a non-login shell, which suits me better
-set-option -g default-command '$SHELL'
+set-option -g default-command "$SHELL"
# Expect a 256-color terminal
set-option -g default-terminal 'screen-256color'