-
-
Save josketres/9140475 to your computer and use it in GitHub Desktop.
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
# use vi mode | |
setw -g mode-keys vi | |
# remap prefix to Control + a | |
set -g prefix C-a | |
unbind C-b | |
bind C-a send-prefix | |
# force a reload of the config file | |
unbind r | |
bind r source-file ~/.tmux.conf | |
# quick pane cycling with Ctrl-a | |
unbind ^A | |
bind ^A select-pane -t :.+ | |
# move around panes like in vim (only in tmux 1.6) | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
bind h select-pane -L | |
# Sane scrolling | |
set -g mode-mouse on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment