Skip to content

Instantly share code, notes, and snippets.

@nilz3ro
Last active January 26, 2016 19:52
Show Gist options
  • Save nilz3ro/a76db84ae5b979f4a02c to your computer and use it in GitHub Desktop.
Save nilz3ro/a76db84ae5b979f4a02c to your computer and use it in GitHub Desktop.
set -g default-terminal "screen-256color"
set -g status-bg white
set -g status-fg black
set -g pane-border-style fg=black
set -g pane-active-border-style fg=white
set -g pane-active-border-style bg=black
# remap prefix to Control + a
set -g prefix C-a
# bind 'C-a C-a' to type 'C-a'
bind C-a send-prefix
unbind C-b
# smart pane switching with awareness of vim splits
bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-h) || tmux select-pane -L"
bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-j) || tmux select-pane -D"
bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-k) || tmux select-pane -U"
bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-l) || tmux select-pane -R"
bind -n C-\ run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys 'C-\\') || tmux select-pane -l"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment