Skip to content

Instantly share code, notes, and snippets.

@jacob-ogre
Created June 5, 2013 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jacob-ogre/5717081 to your computer and use it in GitHub Desktop.
Save jacob-ogre/5717081 to your computer and use it in GitHub Desktop.
new
split-window -h -p 50 -t 0
split-window -v -p 30 -t 1
# pane number display
set-window-option -g window-status-current-bg yellow
# keybindings
set-window-option -g mode-keys vi
# Scroll History
set -g history-limit 30000
# set some color options
set -g status-bg black
set -g status-fg white
set -g status-left ‘#[fg=green]#H’
set-window-option -g clock-mode-colour green #green
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
# bind keys for pane movement:
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
unbind [
bind Escape copy-mode
unbind p
bind p paste-buffer
bind-key -t vi-copy 'v' begin-selection
bind-key -t vi-copy 'y' copy-selection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment