Skip to content

Instantly share code, notes, and snippets.

@joaorafaelm
Last active September 9, 2015 12:31
Show Gist options
  • Save joaorafaelm/880524460e241b5de2e7 to your computer and use it in GitHub Desktop.
Save joaorafaelm/880524460e241b5de2e7 to your computer and use it in GitHub Desktop.
ubuntu 15
# UTF-8
set -g status-utf8 'on'
# 256 colors
set -g default-terminal 'screen-256color'
# Disable base64 copy of selection
set-option -s set-clipboard off
# Default shell
set -g default-shell /usr/bin/fish
# Separator
set -g pane-border-fg 'black'
set -g pane-active-border-fg 'blue'
# Mouse
setw -g mode-mouse on
set -g mouse-select-window on
set -g mouse-select-pane on
set -g mouse-resize-pane on
# Status bar
set -g status-justify left
set-option -g status-bg 'black'
set-option -g status-fg white
set-option -g status-interval 5
setw -g window-status-format '#[fg=#b4b4b4, bg=blue] #I #[fg=#b4b4b4]#W '
setw -g window-status-current-format '#[fg=#d5d5d5, bg=#a35b66] #I #[fg=#b4b4b4]#W '
set-option -g status-left '#[fg=blue,bg=black] #S'
set -g status-right '#[fg=black,bold]#T #[fg=blue] %B %d, %Y %R '
set -g status-left-length 100
set -g status-right-length 100
# loud or quiet?
set-option -g visual-activity on
set-option -g visual-bell off
set-option -g visual-content off
set-option -g visual-silence off
set-window-option -g monitor-activity off
set-window-option -g monitor-content on
set-option -g bell-action none
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment