-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
39 lines (30 loc) · 1.15 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
set-option -s default-terminal "tmux-256color"
set-option -as terminal-overrides ",xterm*:Tc"
set-option -s escape-time 0
set-option -g history-limit 50000
set-option -g display-time 1000
set-option -g mode-keys vi
set-option -g base-index 1
set-option -g pane-base-index 1
set-option -g automatic-rename off
set-option -g focus-events on
set-option -g prefix C-a
bind-key -T prefix C-a send-prefix
unbind-key C-b
bind-key -T prefix a last-window
bind-key -T prefix v split-window -c "#{pane_current_path}"
unbind-key '"'
bind-key -T prefix h split-window -h -c "#{pane_current_path}"
unbind-key '%'
bind-key -T prefix r source-file ~/.tmux.conf \; display-message "reloading config..."
set-option -g monitor-activity on
set-option -g visual-activity on
set-option -g clock-mode-style 24
set -g @plugin 'dracula/tmux'
# it can accept `session`, `smiley`, `window`, or any character.
set -g @dracula-show-left-icon session
# available plugins: battery, cpu-usage, git, gpu-usage, ram-usage, network, network-bandwidth, network-ping, weather, time
set -g @dracula-plugins "time"
set -g @dracula-day-month true
set -g @dracula-show-flags true
run '~/.tmux/plugins/tpm/tpm'