Skip to content

Instantly share code, notes, and snippets.

@toracle
Last active November 19, 2019 02:39
Show Gist options
  • Save toracle/fc371f7d71ffd0962df7 to your computer and use it in GitHub Desktop.
Save toracle/fc371f7d71ffd0962df7 to your computer and use it in GitHub Desktop.
# prefix key
unbind-key C-b
set -g prefix 'C-M-v'
bind-key 'C-M-v' send-prefix
set-option -g default-terminal "screen-256color"
# To use mouse
set -g mouse on
set-window-option -g xterm-keys on
#### COLOUR (Solarized 256)
# default statusbar colors
# set-option -g status-bg colour235 #base02
# set-option -g status-fg colour136 #yellow
# set-option -g status-attr default
set -g status-style bg=colour235,fg=colour136
# default window title colors
# set-window-option -g window-status-fg colour244 #base0
# set-window-option -g window-status-bg default
# set-window-option -g window-status-attr dim
set -g window-status-style fg=colour244,bg=default
# active window title colors
# set-window-option -g window-status-current-fg colour166 #orange
# set-window-option -g window-status-current-bg default
# set-window-option -g window-status-current-attr bright
set -g window-status-current-style fg=colour166,bg=default
# pane border
# set-option -g pane-border-fg colour235 #base02
# set-option -g pane-active-border-fg colour240 #base01
set -g pane-border-style fg=colour235
set -g pane-active-border-style fg=colour240
# message text
# set-option -g message-bg colour235 #base02
# set-option -g message-fg colour166 #orange
set -g message-style bg=colour235,fg=colour166
# pane number display
set-option -g display-panes-active-colour colour33 #blue
set-option -g display-panes-colour colour166 #orange
# clock
set-window-option -g clock-mode-colour colour64 #green
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment