|
|
|
|
@@ -1,3 +1,7 @@
|
|
|
|
|
# Enable utf-8
|
|
|
|
|
set -g utf8 on
|
|
|
|
|
set -g status-utf8 on
|
|
|
|
|
|
|
|
|
|
# Use vim keybindings in copy mode
|
|
|
|
|
set -g mode-keys vi
|
|
|
|
|
|
|
|
|
|
@@ -19,7 +23,7 @@ set -g display-time 4000
|
|
|
|
|
set -g status-interval 5
|
|
|
|
|
|
|
|
|
|
# Upgrade $TERM
|
|
|
|
|
set -g default-terminal "tmux-256color"
|
|
|
|
|
set -g default-terminal "screen-256color"
|
|
|
|
|
|
|
|
|
|
# Focus events enabled for terminals that support them
|
|
|
|
|
set -g focus-events on
|
|
|
|
|
@@ -34,22 +38,13 @@ set -g pane-base-index 1
|
|
|
|
|
# Enable mouse support
|
|
|
|
|
set-option -g mouse on
|
|
|
|
|
|
|
|
|
|
# Enable changing cursor shape per pane in iTerm2 or VTE compatible terminals,
|
|
|
|
|
# vim or zsh should emit VTE compatible escape sequences to change cursor shape
|
|
|
|
|
if -b '[ -n $ITERM_PROFILE ]' \
|
|
|
|
|
"set -ga terminal-overrides '*:Ss=\E]1337;CursorShape=%p1%d\7'" \
|
|
|
|
|
"set -ga terminal-overrides '*:Ss=\E[%p1%d q:Se=\E[2 q'"
|
|
|
|
|
|
|
|
|
|
# Enable strikethrough on VTE compatible terminals.
|
|
|
|
|
set -ga terminal-overrides 'xterm*:smxx=\E[9m'
|
|
|
|
|
# Enable cursor shape per pane in VTE compatible terminals
|
|
|
|
|
if '[ "`uname`" != "Darwin" ]' \
|
|
|
|
|
'set -ga terminal-overrides \',*:Ss=\E[%p1%d q:Se=\E[2 q\''
|
|
|
|
|
|
|
|
|
|
# Set only on OS X where it's required
|
|
|
|
|
if -b '[ "`uname`" = "Darwin" ]' \
|
|
|
|
|
"set -g default-command 'reattach-to-user-namespace -l $SHELL'"
|
|
|
|
|
|
|
|
|
|
# Restore old next/previous window bindings
|
|
|
|
|
bind C-n next-window
|
|
|
|
|
bind C-p previous-window
|
|
|
|
|
if '[ "`uname`" = "Darwin" ]' \
|
|
|
|
|
'set -g default-command "reattach-to-user-namespace -l $SHELL"'
|
|
|
|
|
|
|
|
|
|
# Make new splits open in current directory
|
|
|
|
|
bind "\"" split-window -c "#{pane_current_path}"
|
|
|
|
|
@@ -68,11 +63,6 @@ bind-key u capture-pane \; split-window "tmux show-buffer | urlview -"
|
|
|
|
|
|
|
|
|
|
# Enter copy mode with C-U
|
|
|
|
|
bind-key C-u copy-mode -u
|
|
|
|
|
# Begin selection in copy mode with v not Space
|
|
|
|
|
bind-key -T copy-mode-vi v send-keys -X begin-selection
|
|
|
|
|
# Yank to the system clipboard in copy mode
|
|
|
|
|
if -b '[ "`uname`" = "Linux" ]' \
|
|
|
|
|
"bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xsel -i -p && xsel -o -p | xsel -i -b'"
|
|
|
|
|
|
|
|
|
|
# Left status style
|
|
|
|
|
set-window-option -g status-left " #S"
|
|
|
|
|
|