Created
January 15, 2014 20:18
-
-
Save ftrain/8443744 to your computer and use it in GitHub Desktop.
A tmux that respects mouse events.
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
set -g mode-mouse on | |
set -g mouse-resize-pane on | |
set -g mouse-select-pane on | |
set -g mouse-select-window on | |
set -g base-index 1 | |
setw -g aggressive-resize on | |
set-option -g status-utf8 on | |
set -g status-bg black | |
set -g status-fg green | |
#set -g status-left-length 15 | |
#set -g status-left ' #[fg=cyan,bright]#10H#[fg=green]:#[fg=white]#S#[fg=green] | #[default]' | |
#set -g status-right '| #[fg=yellow]%y-%m-%d %H:%M ' | |
set -g status-justify centre | |
# MOAR COLORS | |
set -g default-terminal "screen-256color" | |
# Turn on the extra keys we now support. | |
set-window-option -g xterm-keys on | |
# big big history | |
set-option -g history-limit 10000 | |
# kill the bell | |
set-option bell-action none | |
bind -t emacs-copy C-z scroll-down | |
bind -t emacs-copy M-z scroll-up |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment