Created
May 21, 2014 16:41
-
-
Save trkoch/a843884666823bce50b2 to your computer and use it in GitHub Desktop.
Basic tmux config
This file contains 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
# Inherit current path in new window | |
bind-key c new-window -c "#{pane_current_path}" | |
# Enable mouse scrolling | |
set-window-option -g mode-mouse on | |
# Remap window navigation to vim | |
unbind-key j | |
bind-key j select-pane -D | |
unbind-key k | |
bind-key k select-pane -U | |
unbind-key h | |
bind-key h select-pane -L | |
unbind-key l | |
bind-key l select-pane -R |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment