Skip to content

Instantly share code, notes, and snippets.

@karampok
Last active December 12, 2017 09:10
Show Gist options
  • Save karampok/6475b53b0fc4aec730cfbb8f820ef823 to your computer and use it in GitHub Desktop.
Save karampok/6475b53b0fc4aec730cfbb8f820ef823 to your computer and use it in GitHub Desktop.
kubo-team tmate.conf (`tmate -f ~/.tmate.conf`)
set-option -g prefix C-space
bind-key C-space last-window
set -g base-index 1
set -s escape-time 0
set-option -g history-limit 200000
set-option -g status-keys vi
setw -g mode-keys vi
unbind p
bind p paste-buffer
bind-key -t vi-copy 'v' begin-selection
bind-key -t vi-copy 'y' copy-selection
bind -t vi-copy Escape cancel
bind c new-window -c "#{pane_current_path}"
bind | split-window -h -c "#{pane_current_path}"
bind _ split-window -v -c "#{pane_current_path}"
#hjkl pane traversal
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
set-option -g visual-activity off
set-option -g visual-bell off
set-option -g visual-silence off
set-window-option -g monitor-activity off
set-option -g bell-action none
set -g status-left-length 100
set -g status-left "#[fg=white][@#H] "
set -g window-status-separator ' | '
set-option -g pane-active-border-fg green #base01
set-option -g pane-border-fg white #base02
set -g status-right-length 100
set -g status-right '#[default]|#[fg=colour69](SF #(TZ=US/Pacific date +%%H:%%M)) #[fg=yellow](TOR #(TZ=America/Toronto date +%%H:%%M)) #[fg=green](DUB #(TZ=Europe/Dublin date +%%H:%%M)) #[fg=blue](ZRH #(TZ=Europe/Zurich date +%%H:%%M))#[default]┃ #[fg=white]%a %d-%m-%y #[default]'
#### COLOUR (Solarized dark)
# default statusbar colors
set-option -g status-bg black #base02
set-option -g status-fg yellow #yellow
set-option -g status-attr default
# default window title colors
set-window-option -g window-status-fg brightblue #base0
set-window-option -g window-status-bg default
#set-window-option -g window-status-attr dim
# active window title colors
set-window-option -g window-status-current-fg brightred #orange
set-window-option -g window-status-current-bg default
#set-window-option -g window-status-current-attr bright
# pane border
set-option -g pane-border-fg black #base02
set-option -g pane-active-border-fg brightgreen #base01
# message text
set-option -g message-bg black #base02
set-option -g message-fg brightred #orange
# pane number display
set-option -g display-panes-active-colour blue #blue
set-option -g display-panes-colour brightred #orange
# clock
set-window-option -g clock-mode-colour green #green
# bell
set-window-option -g window-status-bell-style fg=black,bg=red #base02, red
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment