Skip to content

Instantly share code, notes, and snippets.

@hersonls
Created November 26, 2014 15:27
Show Gist options
  • Save hersonls/03c6210a5c3bfefb7091 to your computer and use it in GitHub Desktop.
Save hersonls/03c6210a5c3bfefb7091 to your computer and use it in GitHub Desktop.
Tmux: Personal tmux settings
unbind %
bind | split-window -h
bind _ split-window -v
# Patch for OS X pbpaste and pbcopy under tmux.
set-option -g default-command "which reattach-to-user-namespace > /dev/null && reattach-to-user-namespace -l $SHELL || $SHELL"
# Use Alt-arrow keys without prefix key to switch panes
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# Use vim keybindings in copy mode
setw -g mode-keys vi
# Setup 'v' to begin selection as in Vim
bind-key -t vi-copy v begin-selection
bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"
# Update default binding of `Enter` to also use copy-pipe
unbind -t vi-copy Enter
bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment