Created
July 1, 2012 21:18
-
-
Save marlun/3029685 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
| # Remap prefix to Control + a (screen default) | |
| set -g prefix C-a | |
| unbind C-b | |
| bind C-a send-prefix | |
| # Force a reload of config file | |
| unbind r | |
| bind r source-file ~/.tmux.conf | |
| # Make tmux use 256 colors | |
| set -g default-terminal "screen-256color" | |
| # Make it possible to hit keys faster | |
| set -s escape-time 0 | |
| # use vim motion keys while in copy mode | |
| setw -g mode-keys vi | |
| # Reattach tmux to user namespace. Used so we can use "* register | |
| set-option -g default-command "reattach-to-user-namespace -l bash" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment