Skip to content

Instantly share code, notes, and snippets.

@mwestza
Created November 7, 2017 17:07
Show Gist options
  • Save mwestza/04f039b9c8855bafe4887914636cfeb0 to your computer and use it in GitHub Desktop.
Save mwestza/04f039b9c8855bafe4887914636cfeb0 to your computer and use it in GitHub Desktop.
# quick and dirty .tmux.conf to make it a bit more "screen" like
# Set the prefix to ^A.
unbind C-b
set -g prefix ^A
bind a send-prefix
# screen ^C c
unbind ^C
bind ^C new-window
unbind c
bind c new-window
# detach ^D d
unbind ^D
bind ^D detach
# next ^@ ^N sp n
unbind ^@
bind ^@ next-window
unbind ^N
bind ^N next-window
unbind " "
bind " " next-window
unbind n
bind n next-window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment