Skip to content

Instantly share code, notes, and snippets.

@scgilardi
Created May 10, 2010 23:07
Show Gist options
  • Save scgilardi/396664 to your computer and use it in GitHub Desktop.
Save scgilardi/396664 to your computer and use it in GitHub Desktop.
% cat .tmux.conf
# global options
set-option -g prefix C-z
set-option -g default-terminal "xterm-256color"
set-option -g status-bg blue
set-option -g status-left-length 12
set-option -g status-left "#[fg=yellow]#H#[default]"
# bindings
unbind-key C-b
bind-key C-z send-prefix
bind-key b set-option status
bind-key / command-prompt "split-window 'exec man %%'"
bind-key S command-prompt -p ssh: "new-window -n %1 'ssh %1'"
# session
new-session -n emacs 'emacs -nw'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment