Created
June 5, 2013 20:35
-
-
Save jacob-ogre/5717081 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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