-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.tmux.conf
39 lines (30 loc) · 1013 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
# if run as "tmux attach", create a session if one does not already exist
new-session -n $HOST
# Scroll History
set -g history-limit 30000
# setup | and - for window splitting
unbind %
bind | split-window -h
bind - split-window -v
# start window numbering at 1 for easier switching
set -g base-index 1
setw -g pane-base-index 1
# start numbering at 1
set -g base-index 1
# default window title colors
set-window-option -g automatic-rename on
# 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-copycat'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tmux-open'
set -g @plugin 'tmux-plugins/tmux-cowboy'
set -g @plugin 'dracula/tmux'
run '~/.tmux/plugins/tpm/tpm'
# tmux colors
set -g default-terminal "screen-256color"
# tell Tmux that outside terminal supports true color
set -ga terminal-overrides ",xterm-256color*:Tc"