25 lines
555 B
Bash
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
|