dotfiles/tmux.conf

27 lines
569 B
Plaintext
Raw Normal View History

2019-04-18 04:11:08 -04:00
# map H and V to horizontal and vertical splits
2018-10-17 22:15:07 -04:00
bind-key V split-window -h
bind-key H split-window -v
2019-04-18 04:11:08 -04:00
# map r to forcae a reload of the config file
unbind r
2018-10-17 22:15:07 -04:00
bind r source-file ~/.tmux.conf \; display "Reloading Config"
2019-04-18 04:11:08 -04:00
# set base windows index to 1
2018-10-17 22:15:07 -04:00
set -g base-index 1
2019-04-18 04:11:08 -04:00
# set screen options
2018-10-17 22:15:07 -04:00
set-option -sg escape-time 10
set-option -g default-terminal "screen-256color"
2019-04-18 04:11:08 -04:00
# map Ctrl + a to prefix and unbind Ctrl + b
set -g prefix C-a
unbind C-b
bind C-a send-prefix
# quick pane cycling
unbind ^A
bind ^A select-pane -t :.+
2018-10-17 22:15:07 -04:00
source "/usr/share/tmux/powerline.conf"