Created
January 27, 2012 18:46
-
-
Save gazoombo/1690258 to your computer and use it in GitHub Desktop.
vim keybindings for tmux
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
# I'm a Vim user, this makes navigation easier | |
setw -g mode-keys vi # I especially like being able to search with /,? when in copy-mode | |
unbind-key j | |
bind-key j select-pane -D # Similar to 'C-w j' to navigate windows in Vim | |
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
Adding this lines, making tmux more vim-like on switching between splited windows.