dotfiles/tmux/tmux.conf
Anthony Cicchetti 0b028b2809 added some stuff
2018-11-23 15:44:07 -05:00

54 lines
1.1 KiB
Bash

# set default terminal
set -g default-terminal "tmux-256color"
# set mouse/history stuff
set -g mouse on
set -g history-limit 20000
# rebind prefix
set -g prefix C-a
# always renumber windows
set -g renumber-windows on
# tile all windows
unbind =
bind = select-layout tiled
# make window/pane index start with 1
set -g base-index 1
setw -g pane-base-index 1
# Set titles
set-option -g set-titles on
set-option -g set-titles-string "#T - #W"
# Set status bar
set -g status-bg black
set -g status-fg white
######################
#### Key Bindings ####
######################
# synchronize all panes in window
bind y setw synchronize-panes
# pane movement shortcuts
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# vim-like copy-mode
setw -g mode-keys vi
unbind [
bind Escape copy-mode
unbind p
bind p paste-buffer
bind -Tcopy-mode-vi 'v' send -X begin-selection
bind -Tcopy-mode-vi 'y' send -X copy-pipe-and-cancel "tmux save-buffer - | reattach-to-user-namespace pbcopy"
# split-windows
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
set -s escape-time 0