]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - tmux.conf.in
tmux.conf: Use line continuation.
[config/dotfiles.git] / tmux.conf.in
similarity index 93%
rename from tmux.conf
rename to tmux.conf.in
index 09c6ed3128d47e51ec5c40c152e85413863f466f..f1fe4e54468b2da6e8894238d8374cb09a743b93 100644 (file)
--- a/tmux.conf
@@ -50,7 +50,8 @@ set-option -g status-bg colour12
 # Nothing left of window list.
 set-option -g status-left ""
 # Current load average and hostname on the right.
-set-option -g status-right "#(uptime | sed 's/^.*load averages*: //; s/,//g') #H"
+set-option -g status-right "#(uptime | sed 's/^.*load averages*: //; s/,//g') \
+                            #H"
 
 # Format for windows in the window list in the status line. #I window index,
 # #W window number, #F window flags.
@@ -92,6 +93,8 @@ bind-key C-t display-message
 # Run urlview on the current screen content. Very useful to follow links.
 # Thanks to Arch wiki (https://wiki.archlinux.org/index.php/Tmux) for the
 # basic idea.
-bind-key C-b capture-pane \; save-buffer ~/.tmp/tmux-urlview \; new-window "$SHELL -c 'urlview < ~/.tmp/tmux-urlview'"
+bind-key C-b capture-pane \; \
+             save-buffer ~/.tmp/tmux-urlview \; \
+             new-window "$SHELL -c 'urlview < ~/.tmp/tmux-urlview'"
 
 # vim: ft=tmux