Skip to content

Instantly share code, notes, and snippets.

@ryangraham
Created August 19, 2014 21:17
Show Gist options
  • Save ryangraham/956eb10604d3b7be2675 to your computer and use it in GitHub Desktop.
Save ryangraham/956eb10604d3b7be2675 to your computer and use it in GitHub Desktop.
~/.tmux.conf
vagrant@precise64:~$ cat ~/.tmux.conf
# remap prefix to Control + a
set -g prefix C-a
# bind 'C-a C-a' to type 'C-a'
bind C-a send-prefix
unbind C-b
# split into 3 panes
new -s sesh -n blao
select-window -t blao
selectp -t 0
splitw -v -p 2
selectp -t 0
splitw -h -p 50
selectp -t 0
vagrant@precise64:~$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment