-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
34 lines (25 loc) · 861 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
# Colors
set -g default-terminal "xterm-256color"
# Default command
set-option -g default-command "reattach-to-user-namespace -l envchain main aws-okta exec -a 12h -t 8h platform -- zsh"
# Default shell
set -g default-shell "/usr/local/bin/zsh"
# Powerline
run-shell "powerline-daemon -q"
source "/usr/local/lib/python3.7/site-packages/powerline/bindings/tmux/powerline.conf"
# Do not highlight active pane border
set-window-option -g pane-active-border-style fg=white
# Increase scrollback buffer size
set-option -g history-limit 10000
# Clear scrollback buffer
bind -n C-k clear-history
# Remap prefix
unbind C-b
set-option -g prefix `
bind ` send-prefix
# Plugins
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tpm'
# Initialize TMUX plugin manager
run '~/.tmux/plugins/tpm/tpm'