-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
29 lines (23 loc) · 968 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
# set default terminal for solarized
set -g default-terminal "screen-256color"
# set VI keys
set-option -g status-keys vi
set-window-option -g mode-keys vi
bind-key -t vi-copy 'v' begin-selection
bind-key 'y' send-keys x\; run-shell "tmux show-buffer | pbcopy"\; display-message "copied"
# open new window in the same directory
bind c new-window -c "#{pane_current_path}"
# set utf-8
set-window-option -g utf8 on
# be notified when there is activity in one of your windows
set-window-option -g monitor-activity on
# don't rename windows automatically
set-window-option -g allow-rename off
set-window-option -g automatic-rename off
set-option -g status on
set-option -g status-interval 2
set-option -g status-justify "centre"
set-option -g status-left-length 60
set-option -g status-right-length 90
set-option -g status-left "#(~/tmux-powerline/tmux-powerline/powerline.sh left)"
set-option -g status-right "#(~/tmux-powerline/tmux-powerline/powerline.sh right)"