-
-
Save number5/473372 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 prefix ` | |
unbind-key C-b | |
bind-key ` last-window | |
bind '~' split-window "exec htop" | |
bind C-h split-window -h | |
bind C-v split-window -v | |
bind C-p paste-buffer | |
bind-key -n C-left prev | |
bind-key -n C-right next | |
bind-key K confirm kill-server | |
bind-key k confirm kill-window | |
# `+r reloads the configuration, handy | |
bind r source-file ~/.tmux.conf | |
set -g base-index 1 | |
set -g history-limit 5000 | |
set -g set-remain-on-exit on | |
set -g set-titles on | |
set -g set-titles-string '#S:#I.#P #W' | |
set -g status-left ' #[fg=green,bold]#H#[default]' | |
set-option -g bell-action none | |
set-option -g default-shell /bin/zsh | |
set-option -g default-terminal "screen-256color" | |
set-option -g display-time 2000 | |
set-option -g message-attr bright | |
set-option -g mouse-select-pane on | |
set-option -g status on | |
set-option -g status-bg blue | |
set-option -g status-fg white | |
set-option -g status-interval 1000 | |
set-option -g status-interval 1000 | |
set-option -g status-keys vi | |
set-option -g status-right '#[fg=yellow,bold]#(cut -d " " -f 1-4 /proc/loadavg)#[default] #[fg=cyan,bold]%Y-%m-%d %H:%M#[default] ' | |
set-option -g status-utf8 on | |
set-option -g visual-activity on | |
set-window-option -g automatic-rename on | |
set-window-option -g mode-keys vi | |
set-window-option -g utf8 on | |
set-window-option -g window-status-bg white | |
set-window-option -g window-status-current-attr 'bold' | |
set-window-option -g window-status-current-attr 'bold' | |
set-window-option -g window-status-current-bg red | |
set-window-option -g window-status-current-fg white | |
set-window-option -g window-status-fg black | |
set-window-option -g monitor-activity on | |
unbind % | |
unbind '"' | |
unbind ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment