2013-04-30 15:58:31 -04:00
|
|
|
# for setting up
|
2015-05-15 01:26:30 -04:00
|
|
|
bind-key r source-file ~/.tmux.conf \; display-message " ✱ ~/.tmux.conf is reloaded"
|
2013-04-30 15:58:31 -04:00
|
|
|
|
|
|
|
# ctrl-b is annoying
|
|
|
|
set-option -g prefix C-a
|
|
|
|
|
|
|
|
# double tap for back and forth
|
|
|
|
bind-key C-a last-window
|
|
|
|
|
2013-08-03 02:24:11 -04:00
|
|
|
# for muxception
|
|
|
|
bind-key a send-prefix
|
|
|
|
|
2013-04-30 15:58:31 -04:00
|
|
|
# close window
|
|
|
|
bind q confirm kill-window
|
|
|
|
|
|
|
|
# 0 is way over there
|
|
|
|
set-option -g base-index 1
|
|
|
|
setw -g pane-base-index 1
|
|
|
|
|
|
|
|
# 256 colors (bce matches whatever I am doing with t_Co=256 in vim)
|
2013-08-12 02:18:47 -04:00
|
|
|
set -g default-terminal "screen-256color"
|
2013-04-30 15:58:31 -04:00
|
|
|
|
|
|
|
# hostry should be longer
|
|
|
|
set -g history-limit 10000
|
|
|
|
|
|
|
|
# no autorename
|
|
|
|
set -g automatic-rename off
|
|
|
|
|
2013-08-19 19:43:39 -04:00
|
|
|
# renumber windows
|
|
|
|
set -g renumber-windows on
|
|
|
|
|
2013-04-30 15:58:31 -04:00
|
|
|
# activity stuff
|
|
|
|
set-window-option -g monitor-activity off
|
|
|
|
|
|
|
|
# copy mode stuff
|
|
|
|
set-window-option -g mode-mouse on # mouse can enable (danger zone, maybe?)
|
|
|
|
set-window-option -g mode-keys vi # emulate vim movement in copy mode
|
2013-08-08 14:07:23 -04:00
|
|
|
bind-key -t vi-copy 'v' begin-selection
|
|
|
|
bind-key -t vi-copy 'y' copy-selection
|
|
|
|
bind y run-shell "tmux show-buffer | xclip -sel clip -i"
|
2013-04-30 15:58:31 -04:00
|
|
|
|
|
|
|
# be more like vim
|
|
|
|
bind h select-pane -L # left pane
|
|
|
|
bind j select-pane -D # bottom pane
|
|
|
|
bind k select-pane -U # top pane
|
|
|
|
bind l select-pane -R # right pane
|
|
|
|
|
|
|
|
bind < resize-pane -L 10
|
|
|
|
bind > resize-pane -R 10
|
|
|
|
bind - resize-pane -D 10
|
|
|
|
bind + resize-pane -U 10
|
|
|
|
|
|
|
|
# status bar stuff
|
|
|
|
set -g status on
|
|
|
|
set -g status-bg colour236
|
|
|
|
set -g status-fg white
|
|
|
|
set -g status-left '#[fg=green]#H'
|
|
|
|
set-window-option -g window-status-current-bg white
|
|
|
|
set-window-option -g window-status-current-fg black
|
|
|
|
set-option -g status-right '%d %b %Y @ %k:%M'
|
|
|
|
|
2015-03-17 17:09:18 -04:00
|
|
|
# because the new tmux is inadequate
|
2015-03-19 13:10:20 -04:00
|
|
|
if-shell 'tmux -V | grep -q 1.8' "source-file ~/.tmux.1-8.conf"
|
|
|
|
if-shell 'tmux -V | grep -q 1.9' "source-file ~/.tmux.1-9.conf"
|
2015-05-15 01:21:54 -04:00
|
|
|
if-shell 'tmux -V | grep -q 2.0' "source-file ~/.tmux.1-9.conf"
|