From d32ab30dc3611481cb55ce7b18bb1a80352f9146 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Mon, 28 Dec 2015 13:52:48 -0500 Subject: Initial --- tmux.conf | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 tmux.conf (limited to 'tmux.conf') diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..a94f717 --- /dev/null +++ b/tmux.conf @@ -0,0 +1,39 @@ +set -g status-bg cyan +set -g status-fg black +set-window-option -g window-status-current-bg black +set-window-option -g window-status-current-fg cyan +bind M-s setw synchronize-panes + +# set -g mode-mouse on +setw -g mode-keys vi +setw -g aggressive-resize on +set -g default-terminal "screen-256color" + + +# Don't let command rename our windows +set-option -g allow-rename off + +bind-key -t vi-copy 'v' begin-selection +bind-key -t vi-copy 'y' copy-selection + +# Fix for certian applications such as Nvim +set -s escape-time 0 + + +bind-key M-k select-pane -U +bind-key M-j select-pane -D +bind-key M-h select-pane -L +bind-key M-l select-pane -R + +# If you still want to select text out of the terminal as you normally would +# You should hold the shift key ( Linux ) I'm told it's "Option on Mac OS X" +set -g mouse on + +# Old mouse method +# set-option -g mode-mouse on +# set-option -g mouse-resize-pane on +# set-option -g mouse-select-pane on +# set-option -g mouse-select-window on + + +source ~/.tmux.conf.local -- cgit v1.2.3