aboutsummaryrefslogtreecommitdiff
path: root/tmux/tmux.conf
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-06-15 15:13:53 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-06-15 15:13:53 +1200
commit229d834928c053378578befa56367a96ab845f6b (patch)
tree1d9b4267141907c0e876fe8ba610602ea03aad06 /tmux/tmux.conf
parentRemove now-unused TMUX_BG/FG vars (diff)
downloaddotfiles-229d834928c053378578befa56367a96ab845f6b.tar.gz
dotfiles-229d834928c053378578befa56367a96ab845f6b.zip
Use single quotes for expansions
Diffstat (limited to 'tmux/tmux.conf')
-rw-r--r--tmux/tmux.conf26
1 files changed, 13 insertions, 13 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf
index 4acf6a3d..c469ea76 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'
@@ -60,7 +60,7 @@ bind-key k select-pane -U
bind-key l select-pane -R
# Join and break panes
-bind-key J choose-window "join-pane -h -s '%%'"
+bind-key J choose-window 'join-pane -h -s "%%"'
bind-key B break-pane -d
# Select only sessions in the choose-tree menu, not the whole tree of sessions
@@ -101,33 +101,33 @@ set-window-option -g allow-rename off
# Window titles are the window index, a colon, the window or command name, and
# any activity or alert indicators
-set-window-option -g window-status-format "#I:#W#F"
+set-window-option -g window-status-format '#I:#W#F'
# Message dialogs are white on blue
-set-option -g message-style "bg=colour18,fg=colour231"
+set-option -g message-style 'bg=colour18,fg=colour231'
# Window choosers are white on blue
-set-window-option -g mode-style "bg=colour18,fg=colour231"
+set-window-option -g mode-style 'bg=colour18,fg=colour231'
# Pane borders are always in the background color
-set-option -g pane-border-style "fg=colour237"
-set-option -g pane-active-border-style "fg=colour237"
+set-option -g pane-border-style 'fg=colour237'
+set-option -g pane-active-border-style 'fg=colour237'
# Inactive windows have slightly washed-out system colours
-set-option -g window-style "bg=colour232,fg=colour248"
-set-option -g window-active-style "bg=colour0,fg=colour15"
+set-option -g window-style 'bg=colour232,fg=colour248'
+set-option -g window-active-style 'bg=colour0,fg=colour15'
# The status bar has the defined background and foreground colours
-set-option -g status-style "bg=colour237,fg=colour248"
+set-option -g status-style 'bg=colour237,fg=colour248'
# Titles of windows default to black text with no embellishment
-set-window-option -g window-status-style "fg=colour16"
+set-window-option -g window-status-style 'fg=colour16'
# The title of the active window is in white rather than black
-set-window-option -g window-status-current-style "fg=colour231"
+set-window-option -g window-status-current-style 'fg=colour231'
# A window with a bell has a title with a red background until cleared
-set-window-option -g window-status-bell-style "bg=colour9"
+set-window-option -g window-status-bell-style 'bg=colour9'
# Source any configuration in the subdir if there is any
if-shell 'set -- "$HOME"/.tmux.conf.d/*;test -e "$1"' \