dotfiles/.tmux.conf
surtur 8d0dee44f8
added plugin manager support to tmux
* ...and some plugins
* increased scrollback to 100k lines (still not enough sometimes)
* set default terminal variable to something somewhat less obscure
2019-12-08 02:53:03 +01:00

64 lines
2.0 KiB
Bash

# tmux config
# largely based on spicycode's config: https://gist.github.com/spicycode/1229612
set -g base-index 1
set-window-option -g automatic-rename on
set-option -g set-titles on
set-option -g allow-rename on
set -g status-keys vi
set -g history-limit 100000
setw -g mouse on
setw -g mode-keys vi
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -sel clip -i'
bind-key -T copy-mode-vi r send-keys -X rectangle-toggle
setw -g monitor-activity on
bind-key v split-window -h
bind-key s split-window -v
# Use Alt-arrow keys without prefix key to switch panes
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# No delay for escape key press
set -sg escape-time 0
# Rather than constraining window size to the maximum size of any client
# connected to the *session*, constrain window size to the maximum size of any
# client connected to *that window*. Much more reasonable.
setw -g aggressive-resize on
# Reload tmux config
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
# Colors
# How to use true colors in vim under tmux? #1246 for 2.6 and higher
# https://github.com/tmux/tmux/issues/1246:
set -g default-terminal "xterm-256color"
set -ga terminal-overrides ",*256col*:Tc"
# THEME
set -g status-bg black
set -g status-fg white
#setw -g status-style default
setw -g status-bg colour237
setw -g status-fg colour39
set -g status-interval 60
set -g status-left-length 30
set -g status-left '#[fg=green,bold](#S) '# #(whoami) '
set -g status-right '#[fg=yellow]#(cut -d " " -f 1-3 /proc/loadavg)#[default] #[fg=white]%a %H:%M#[default]'
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
if "test ! -d ~/.tmux/plugins/tpm" \
"run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'"
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'