Created
October 13, 2011 01:41
-
-
Save carlzulauf/1283122 to your computer and use it in GitHub Desktop.
my tmux config
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
# definitely DON'T use Ctrl+b. lame. | |
unbind C-b | |
# Ctrl+a is a safe choice, I guess | |
# set -g prefix C-a | |
# I never use the Insert key on the console, but it is a bit of a stretch | |
# set -g prefix IC | |
# ` is a cool prefix | |
set -g prefix ` | |
# this should allow for `` to be a literal ` | |
bind-key ` send-prefix | |
# 1 is easier to reach than 0 | |
set -g base-index 1 | |
# make 0 window 10 | |
bind-key 0 select-window -t ':10' | |
# - moves left, = moves right | |
bind-key - previous-window | |
bind-key = next-window | |
bind-key p delete-buffer | |
bind-key K kill-window | |
bind-key Q kill-session | |
bind-key I source-file ~/.tmux/inteliguide.conf | |
# Why have all this RAM if you're not going to use it? | |
set -g history-limit 12288 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment