-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtmux.conf
31 lines (22 loc) · 969 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
set-option -g mouse on
set-option -sg escape-time 10
set-option -g default-terminal "screen-256color"
set-option -sa terminal-overrides ',xterm-256color:RGB'
bind-key -n C-l send-keys -R ^M \; clear-history
# Status update interval
set -g status-interval 1
# command delay? We don't want that, make it short
set -g escape-time 10
# Allow the arrow key to be used immediately after changing windows
set-option -g repeat-time 0
# Reduce time to wait for Escape key. You'll want this for neovim.
set-option escape-time 40
# Allow us to reload our Tmux configuration while
# using Tmux
bind r source-file ~/.tmux.conf \; display "Reloaded!"
if "test ! -d ~/.tmux/plugins/tpm" \
"run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'"
set -g @plugin 'casonadams/tmux-vi-yank'
set -g @plugin 'casonadams/tmux-vi-navigation'
set -g @plugin 'casonadams/tmux-space-theme'
run -b '~/.tmux/plugins/tpm/tpm'