-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
36 lines (29 loc) · 1004 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
set -g default-terminal "xterm-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc"
unbind r
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# Set prefix to Ctrl-a
unbind C-b
set -g prefix C-a
bind C-a send-prefix
# Start numbering at 1
set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows 1
setw -g mode-keys vi
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
#List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'christoomey/vim-tmux-navigator'
#Themes
#source-file ~/.config/tmux/themes/tokyonight_moon.tmux
#source-file ~/.config/tmux/themes/tokyonight_storm.tmux
#source-file ~/.config/tmux/themes/tokyonight_night.tmux
#source-file ~/.config/tmux/themes/tokyonight_day.tmux
source-file ~/.config/tmux/themes/dracula.tmux
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.config/tmux/plugins/tpm/tpm'