-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux.conf
37 lines (31 loc) · 1.04 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
set -s escape-time 0
set -g base-index 1
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'dracula/tmux'
set -g @plugin 'jabirali/tmux-tilish'
set -s default-terminal 'tmux-256color'
set-option -g default-shell /bin/zsh
set-option -g status-position top
set -g mouse on
# Dracula config
set -g @dracula-show-powerline true
set -g @dracula-show-flags true
set -g @dracula-show-left-icon window
set -g @dracula-border-contrast true
set -g @dracula-show-network false
set -g @dracula-show-battery false
set -g @dracula-show-weather false
set -g @dracula-show-location false
set -g @dracula-border-contrast true
# Start with index 1
set -g base-index 1
setw -g pane-base-index 1
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin 'git@github.com:user/plugin'
# set -g @plugin 'git@bitbucket.com:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'