66 lines
1.8 KiB
Bash
66 lines
1.8 KiB
Bash
#Make nicer tmux motion keys that work with vim as well
|
|
is_vim="ps -o state= -o comm= -t '#{pane_tty}' \
|
|
| grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|n?vim?x?)(diff)?$'"
|
|
|
|
bind-key -n C-h if-shell "$is_vim" "send-keys C-h" "select-pane -L"
|
|
bind-key -n C-j if-shell "$is_vim" "send-keys C-j" "select-pane -D"
|
|
bind-key -n C-k if-shell "$is_vim" "send-keys C-k" "select-pane -U"
|
|
bind-key -n C-l if-shell "$is_vim" "send-keys C-l" "select-pane -R"
|
|
bind-key -n C-\ if-shell "$is_vim" "send-keys C-\\" "select-pane -l"
|
|
|
|
unbind C-b
|
|
set -g prefix C-p
|
|
bind C-p send-prefix
|
|
|
|
#Sane split commands
|
|
bind | split-window -h -c "#{pane_current_path}"
|
|
bind - split-window -v -c "#{pane_current_path}"
|
|
unbind '"'
|
|
unbind %
|
|
|
|
# reload config file (change file location to your the tmux.conf you want to use)
|
|
bind r source-file ~/.tmux.conf
|
|
|
|
# Vim key bindings
|
|
set-window-option -g mode-keys vi
|
|
|
|
# don't do anything when a 'bell' rings
|
|
set -g visual-activity off
|
|
set -g visual-bell off
|
|
set -g visual-silence off
|
|
setw -g monitor-activity off
|
|
set -g bell-action none
|
|
|
|
# clock mode
|
|
setw -g clock-mode-colour "#BBBBBB"
|
|
|
|
# copy mode
|
|
setw -g mode-style 'fg=black bg=red bold'
|
|
|
|
# panes
|
|
set -g pane-border-style 'fg=red'
|
|
set -g pane-active-border-style 'fg=yellow'
|
|
|
|
# statusbar
|
|
set -g status-position bottom
|
|
set -g status-justify left
|
|
set -g status-style 'fg=black bold'
|
|
|
|
set -g status-left ''
|
|
set -g status-left-length 10
|
|
|
|
set -g status-right-style 'fg=white bold bg=black'
|
|
set -g status-right '%Y-%m-%d %H:%M '
|
|
set -g status-right-length 50
|
|
|
|
setw -g window-status-current-style 'fg=red bold bg=black'
|
|
setw -g window-status-current-format ' #I #W #F '
|
|
|
|
setw -g window-status-style 'fg=white bg=black'
|
|
setw -g window-status-format ' #I #[fg=white]#W #F '
|
|
|
|
setw -g window-status-bell-style 'fg=yellow bg=red bold'
|
|
|
|
# messages
|
|
set -g message-style 'fg=yellow bg=red bold'
|