aboutsummaryrefslogtreecommitdiff
path: root/config/tmux/tmux.conf
blob: fa4c03a26c60f03925dedd3415a8131ff9eb882f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
unbind C-b
set -g prefix C-a
bind C-a send-prefix

# set -g default-terminal "xterm-256color"
set-option -g default-terminal "screen-256color"
set-option -sa terminal-overrides ',xterm-256color:RGB'

set-option -g focus-events on
set -g mouse on
setw -g mode-keys vi

set -sg escape-time 0  # otherwise <ESC> in vim has a small delay
set-option -g history-limit 5000

bind '"' split-window -c "#{pane_current_path}"
bind '%' split-window -c "#{pane_current_path}" -h
bind 'c' new-window -c "#{pane_current_path}"

set -g @plugin 'tmux-plugins/tpm'

# set -g @plugin 'egel/tmux-gruvbox'
# set -g @tmux-gruvbox 'dark'

set -g @plugin 'arcticicestudio/nord-tmux'

# set -g @plugin 'tomhey/tmux-remote-sessions'

run "$XDG_CONFIG_HOME/tmux/plugins/tpm/tpm"