Created
February 7, 2017 17:35
-
-
Save CrockAgile/6f044b783184c921959d79e8dfa08491 to your computer and use it in GitHub Desktop.
tmux Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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