-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
41 lines (32 loc) · 927 Bytes
/
.tmux.conf
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
30
31
32
33
34
35
36
37
38
39
40
41
set -g prefix C-s
unbind C-b
bind C-s send-prefix
#force reload of tmux conf
unbind r
bind r source-file ~/.tmux.conf
# set -g default-terminal "rio"
set -ag terminal-overrides ",rio:Tc"
#tmux and zsh keep renaming windows, stop this madness!
set-option -g allow-rename off
#reorder window numbers without gaps
set-option -g renumber-windows on
# tmux.conf enable mouse selection in copy mode
set -g mouse on
# Remap window navigation to vim
unbind-key j
bind-key j select-pane -D
unbind-key k
bind-key k select-pane -U
unbind-key h
bind-key h select-pane -L
unbind-key l
bind-key l select-pane -R
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'dracula/tmux'
set -g @dracula-show-fahrenheit false
set -g @dracula-show-location false
set -g @dracula-plugins "battery time"
set -g @dracula-show-timezone false
run '~/.tmux/plugins/tpm/tpm'