Skip to content

Instantly share code, notes, and snippets.

@CrockAgile
Created February 7, 2017 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CrockAgile/6f044b783184c921959d79e8dfa08491 to your computer and use it in GitHub Desktop.
Save CrockAgile/6f044b783184c921959d79e8dfa08491 to your computer and use it in GitHub Desktop.
tmux Configuration
unbind r
bind r source-file ~/.tmux.conf
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind = split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"
unbind '"'
unbind %
bind C-p run "xclip -o | tmux load-buffer - ; tmux paste-buffer"
bind C-y run "tmux save-buffer - | xclip -i -sel c"
set -g default-terminal "screen-256color"
set -g mouse on
set -g visual-activity on
setw -g mode-keys vi
setw -g monitor-activity on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment