Last active
August 29, 2015 14:09
-
-
Save fernandojsg/bbf8f9e33ae2ed8ccc14 to your computer and use it in GitHub Desktop.
.tmux.conf
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 default-terminal "screen-256color" | |
set -g mode-mouse on | |
set-window-option -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 | |
set -g status-utf8 on | |
set -g status-keys vi | |
set -g status-interval 1 | |
set -g status-attr bright | |
set -g status-fg white | |
set -g status-bg black | |
set -g status-left-length 20 | |
set -g status-left '#[fg=green][#[fg=red]#S#[fg=green]]#[default]' | |
set -g status-justify centre | |
set -g status-right '#[fg=green][ %m/%d %H:%M:%S ]#[default]' | |
setw -g window-status-current-format '#[fg=yellow](#I.#P#F#W)#[default]' | |
setw -g window-status-format '#I#F#W' | |
# Allow xterm titles in terminal window, terminal scrolling with scrollbar, and setting overrides of C-Up, C-Down, C-Left, C-Right | |
set -g terminal-overrides "xterm*:XT:smcup@:rmcup@:kUP5=\eOA:kDN5=\eOB:kLFT5=\eOD:kRIT5=\eOC" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment