-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
32 lines (26 loc) · 893 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
# Set the prefix to `ctrl + a` instead of `ctrl + b`
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# Enable mouse action
set-option -g mouse on
# Set history limit
set-option -g history-limit 10000
# Suggestions from nvim :checkhealth
set-option -sg escape-time 10
set-option -g focus-events on
set -g default-terminal "xterm-256color"
set -ag terminal-overrides ",*-256*:Tc"
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'dracula/tmux'
# dracula/tmux
set -g @dracula-show-powerline true
set -g @dracula-show-left-icon session
set -g @dracula-show-flags true
set -g @dracula-plugins "cpu-usage gpu-usage ram-usage time"
set -g @dracula-military-time true
set -g @dracula-show-timezone false
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'