Skip to content

Instantly share code, notes, and snippets.

@jmelchio
Last active December 7, 2020 20:23
Show Gist options
  • Save jmelchio/aff26e692974cf5f312f521bf1eec8b7 to your computer and use it in GitHub Desktop.
Save jmelchio/aff26e692974cf5f312f521bf1eec8b7 to your computer and use it in GitHub Desktop.
tmux config customizations
# tmux configuration customaizations
# allow for reload on the fly
unbind r
bind r source-file ~/.tmux.conf \; display 'Reload tmux config'
# allow use of mouse
# set -g mouse on
# set -g mouse-ut8 on
# change the color of the status bar
set -g status-style fg=black,bg=blue
# change the border style
set -g pane-border-style fg=default
set -g pane-active-border-style bg=default,fg=blue
# set escape time
set-option -sg escape-time 10
# set terminal colors
set-option -g default-terminal "screen-256color"
set-option -ga terminal-overrides ',xterm-256color:RGB'
# That's All Folks !!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment