Skip to content

Instantly share code, notes, and snippets.

@carlzulauf
Created August 11, 2016 15:09
Show Gist options
  • Save carlzulauf/99b5ea27ab17952c2dd3f7e6e51cb7d5 to your computer and use it in GitHub Desktop.
Save carlzulauf/99b5ea27ab17952c2dd3f7e6e51cb7d5 to your computer and use it in GitHub Desktop.
# definitely DON'T use Ctrl+b. lame.
unbind C-b
# ` is a cool prefix
set -g prefix `
set -g default-terminal "screen-256color"
# 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 K kill-window
bind-key Q kill-session
# 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