-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
39 lines (29 loc) · 985 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
set -g default-terminal "screen-256color"
set-option -g status-position bottom
# Custom prefix
set -g prefix C-s
unbind-key C-b
bind-key C-a send-prefix
# Window Splitting
unbind-key %
bind | split-window -h
unbind-key '"'
bind - split-window -v
set-option -g mouse on
set-option -g status-interval 5
set-option -g automatic-rename on
set-option -g automatic-rename-format '#{b:pane_current_path}'
# Tmux Plugin Manager
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'dracula/tmux'
set -g @dracula-show-powerline true
set -g @dracula-plugins "git cpu-usage ram-usage battery time"
set -g @dracula-show-left-icon session
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'