-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtmux.conf
36 lines (26 loc) · 865 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
# unbind C-b
set -g prefix C-a
# bind C-a send-prefix
set -g base-index 1
setw -g pane-base-index 1
# True color support
#set-option -ga terminal-overrides ",xterm-256color:Tc"
#set -g default-terminal "xterm-256color"
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-pain-control'
#
# # Enable powerline characters
if-shell ': ${TMUX_POWERLINE_SYMBOLS?}' '' 'set-environment -g TMUX_POWERLINE_SYMBOLS "powerline"'
# Fix window alignment to left instead of center
set -g status-justify left
# Vim mode
set-window-option -g mode-keys vi
# neovim color setting
set-option -sa terminal-overrides ',XXX:RGB'
# For vim-tmux-clipboard
set -g focus-events on
# Get rid of that pesky escape delay in vim
set -s escape-time 0
run -b '~/.tmux/plugins/tpm/tpm'
# run -b 'powerline-config tmux setup &'