Created
January 4, 2013 22:38
-
-
Save lagsalot/4458085 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
| # reload config file | |
| bind r source-file ~/.tmux.conf \; display-message "source config done" | |
| bind t run-shell '~/bin/notes' | |
| bind [ copy-mode | |
| bind -t vi-copy v begin-selection | |
| bind -t vi-copy y copy-selection | |
| bind -t vi-copy V rectangle-toggle | |
| bind ] paste-buffer | |
| # use the vim resize keys. | |
| bind -r - resize-pane -D 10 | |
| bind -r + resize-pane -U 10 | |
| bind -r < resize-pane -L 10 | |
| bind -r > resize-pane -R 10 | |
| # choose things | |
| bind -r q choose-session | |
| bind -r w choose-window | |
| bind -r o display-panes | |
| # Options | |
| set-option -g default-terminal "screen-256color" | |
| set-option -g utf8 on | |
| set-option -g status-keys vi | |
| set-option -g mode-keys vi | |
| set-option -g aggressive-resize on | |
| set-option -g allow-rename off | |
| set-option -g automatic-rename off | |
| set-option -g monitor-activity on | |
| set-option -g visual-activity off | |
| set-option -g monitor-silence 10 | |
| # Messages | |
| set-option -g display-time 5000 | |
| set-option -g message-bg black | |
| set-option -g message-fg colour039 | |
| # Panes | |
| set-option -g display-panes-time 5000 | |
| set-option -g pane-border-fg black | |
| set-option -g pane-border-bg black | |
| set-option -g pane-active-border-fg colour39 | |
| set-option -g pane-active-border-bg default | |
| set-option -g display-panes-active-colour black | |
| set-option -g display-panes-colour colour201 | |
| # Powerline Thingy | |
| set-option -g status on | |
| set-option -g status-interval 2 | |
| set-option -g status-utf8 on | |
| set-option -g status-justify "left" | |
| set-option -g status-left-length 100 | |
| set-option -g status-right-length 90 | |
| set-option -g status-left "#(~/code/dotfiles/tmux-powerline/status-left.sh) tests " | |
| set-option -g status-right "#(~/code/dotfiles/tmux-powerline/status-right.sh)" | |
| # Powerline Thingy Overides | |
| set-option -g status-bg colour000 | |
| set-option -g status-fg colour060 | |
| set-option -g window-status-format '[ #I #W ]' | |
| set-option -g window-status-bg colour000 | |
| set-option -g window-status-fg colour240 | |
| set-option -g window-status-current-format '[ ➤ #W ]' | |
| set-option -g window-status-current-bg colour000 | |
| set-option -g window-status-current-fg colour173 | |
| set-option -g window-status-activity-attr bold | |
| set-option -g window-status-silent-bg magenta | |
| set-option -g window-status-activity-fg white | |
| set-option -g window-status-separator ' ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment