1
1
Fork 0
dotfiles/tmux/.tmux.conf
2019-08-04 17:32:04 -05:00

25 lines
555 B
Bash

# Config
## Correct numbering
set -g base-index 1
set -g pane-base-index 1
set -g renumber-windows on
## Activity Monitoring
setw -g monitor-activity on
set -g visual-activity on
## Move tabs to top
set-option -g status-position top
# Mappings
## <Leader> |,- Split panes
bind-key \ split-window -h
bind-key - split-window -v
## <Leader> h,j,k,l to switch pane
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
## <Leader>r to reload
bind r source-file ~/.tmux.conf
# Theme
source-file ~/dotfiles/tmux/.tmux.theme