Created
October 21, 2015 17:08
-
-
Save wraithan/0755d031b732912225c8 to your computer and use it in GitHub Desktop.
This file contains 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-option -g default-terminal "screen-256color" | |
set-option -g prefix C-z | |
unbind-key C-b | |
bind-key z send-prefix | |
bind-key C-z last-window | |
bind r source-file ~/.tmux.conf | |
bind c new-window -c "#{pane_current_path}" | |
set -g base-index 1 | |
set -g history-limit 999999999 | |
set -g status-interval 1 | |
set -g status-bg black | |
set -g status-fg white | |
set -g status-justify centre | |
set -g status-left '#[fg=green][#S]#[default]' | |
set -g status-left-length 20 | |
set -g status-right '#[fg=green]%H:%M:%S#[default]' | |
set -g status-right-length 20 | |
set -g pane-border-bg default | |
set -g pane-border-fg blue | |
set -g pane-active-border-bg default | |
set -g pane-active-border-fg red | |
set-window-option -g window-status-current-fg white | |
set-window-option -g window-status-current-bg blue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment