-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
58 lines (50 loc) · 1.91 KB
/
.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'dracula/tmux'
set -g @plugin 'tmux-plugins/tmux-resurrect'
# Panes and windows index starting in 1
set -g base-index 1
setw -g pane-base-index 1
# Allow prompt colors
set -g default-terminal 'screen-256color'
# Use Alt-arrow keys without prefix key to switch panes
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# Shift arrow to switch windows
bind -n S-Left previous-window
bind -n S-Right next-window
# To install plugins:
# $ git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
# $ git clone https://github.com/tmux-sensible/ ~/.tmux/plugins/sensible
# $ git clone https://github.com/tmux-resurrect/ ~/.tmux/plugins/resurrect
# Dracula theme and settings
set -g @dracula-plugins "cpu-usage gpu-usage ram-usage"
set -g @dracula-cpu-usage-colors "pink dark_gray"
set -g @dracula-show-powerline true
set -g @dracula-show-left-sep
set -g @dracula-show-right-sep
set -g @dracula-show-right-sep
set -g @dracula-refresh-rate 5
set -g @dracula-show-left-icon session
set -g @dracula-left-icon-padding 1
set -g @dracula-cpu-usage-label "CPU"
set -g @dracula-battery-label "Battery"
set -g @dracula-ram-usage-label "RAM"
set -g @dracula-ping-server "google.com"
set -g @dracula-ping-rate 5
set -g @dracula-day-month true
set -g @dracula-show-timezone false
set -g @dracula-git-show-current-symbol ✓
set -g @dracula-git-show-diff-symbol !
set -g @dracula-show-fahrenheit false
set -g @dracula-fixed-location "Indaiatuba"
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin '[email protected]:user/plugin'
# set -g @plugin '[email protected]:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'