You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
569 B

# need me some vi mode
setw -g mode-keys vi
# note to self: learn ye a zsh
set -g default-command /usr/bin/zsh
set -g default-shell /usr/bin/zsh
# copy-pasta in a vi-like way
unbind [
bind Escape copy-mode
unbind p
bind p paste-buffer
bind-key -t vi-copy 'v' begin-selection
bind-key -t vi-copy 'y' copy-selection
# must get used to C-b, even when using byobu-tmux
set-option -g prefix C-b
# love the toggle
bind-key C-b last-window
# faster!
set -s escape-time 0
# i forget easily
set -g history-limit 100000
# colors!
set -g default-terminal 'screen-256color'