From 229d834928c053378578befa56367a96ab845f6b Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 15 Jun 2017 15:13:53 +1200 Subject: Use single quotes for expansions --- tmux/tmux.conf | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'tmux') 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"' \ -- cgit v1.2.3