Skip to content

Instantly share code, notes, and snippets.

@jneumann
Created March 6, 2018 01:31
Show Gist options
  • Save jneumann/3d0d3fddba848e051e8f0e97190be781 to your computer and use it in GitHub Desktop.
Save jneumann/3d0d3fddba848e051e8f0e97190be781 to your computer and use it in GitHub Desktop.
setw -g mode-keys vi
unbind-key h
bind h select-pane -L
unbind-key j
bind j select-pane -D
unbind-key k
bind k select-pane -U
unbind-key l
bind l select-pane -R
# Set the title bar
set -g set-titles on
set -g set-titles-string "#S: #W - #h \(%a %d %b %R\) #{session_alerts}"
# Set status bar
# 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 ipecho.net/plain;echo)\) "
set -g status-justify left
set -g status-right '#[fg=Cyan]#S #[fg=white]%a %d %b %R'
# Custom Stuff
set-option -g mouse on
set -g history-limit 30000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment