commit 853efa04d0b9a15cdf1c2df2f1e55c9406b644cc Author: David Thurstenson Date: Wed Jan 20 13:49:27 2016 -0600 initial commit diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..19abd58 --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,69 @@ +set-option -g assume-paste-time 1 +set-option -g base-index 1 +set-option -g pane-base-index 1 +set-option -g default-command "" +set-option -g default-shell "/bin/bash" +set-option -g destroy-unattached off +set-option -g detach-on-destroy on +set-option -g display-panes-active-colour red +set-option -g display-panes-colour blue +set-option -g display-panes-time 1000 +set-option -g display-time 750 +set-option -g history-limit 2000 +set-option -g lock-after-time 0 +set-option -g lock-command "lock -np" +set-option -g word-separators " -_@" +set-option -g renumber-windows off +set-option -g repeat-time 500 +set-option -g set-remain-on-exit off +set-option -g set-titles off +set-option -g set-titles-string "#S:#I:#W - "#T" #{session_alerts}" +set-option -g status on +set-option -g status-interval 15 +set-option -g status-justify left +set-option -g status-keys emacs +set-option -g status-left "[#S] " +set-option -g status-left-length 10 +set-option -g status-left-style default +set-option -g status-position bottom + +# Change prefix to C-a +set-option -g prefix C-a + +# Pane title, time HH:mm, date mm.dd.yyyy in right status bar +set-option -g status-right "%m.%d.%y %H:%M " +set-option -g status-right-length 40 +set-option -g status-right-style default + +# Status bar colors +set-option -g status-style fg=black,bg=cyan +set-option -g message-command-style fg=green,bg=black +set-option -g message-style fg=white,bg=red +set-option -g status-utf8 on +set-option -g update-environment "DISPLAY SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY" + +# Set audible bell on, and visual bell off because it is slooooowwwww +set-option -g bell-action any +set-option -g bell-on-alert on +set-option -g visual-bell off +set-option -g visual-silence off +set-option -g visual-activity off + +# Pane active colors +set-option -g pane-active-border-style fg=cyan,bright + +# Pane inactive colors +set-option -g pane-border-style fg=colour8 + +# Enable mouse scroll up to enable copy mode and start scrolling +bind -n WheelUpPane select-pane -t= \; copy-mode -e \; send-keys -M +bind -n WheelDownPane select-pane -t= \; send-keys -M +set-option -g mouse on +set-option -g mouse-utf8 on + +# Use C-a,Shift-R to reload configuration +bind R source-file ~/.tmux.conf \; display-message "Config reloaded..." + +# Use C-a,a to send prefix to nested session +bind-key a send-prefix +