Last active
October 5, 2015 10:29
-
-
Save siawyoung/0856ae837f94bb3c9369 to your computer and use it in GitHub Desktop.
My tmux configuration settings. Feel free.
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 -g prefix C-x | |
unbind-key C-b | |
bind-key C-x send-prefix | |
bind a next-window | |
bind % split-window -h -c "#{pane_current_path}" | |
bind '"' split-window -c "#{pane_current_path}" | |
bind c new-window -c "$HOME" | |
set -g base-index 1 | |
bind r source-file ~/.tmux.conf | |
set-window-option -g mode-keys vi | |
set -g set-titles on | |
set -g status-utf8 on | |
set -g status-bg black | |
set -g status-fg white | |
set -g status-interval 5 | |
set -g status-left-length 90 | |
set -g status-right-length 60 | |
set -g status-left "#[fg=Green]#(whoami)#[fg=white]::#[fg=blue]#(hostname -s)#[fg=white]::#[fg=yellow]#(curl ifconfig.me;echo)" | |
set -g status-justify left | |
set -g status-right '#[fg=Cyan]#S #[fg=white]%a %d %b %R' | |
set-window-option -g mode-mouse on | |
set-option -g mouse-select-pane on | |
set-option -g mouse-resize-pane on | |
set-option -g mouse-select-window on | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment