Last active
December 7, 2020 20:23
-
-
Save jmelchio/aff26e692974cf5f312f521bf1eec8b7 to your computer and use it in GitHub Desktop.
tmux config customizations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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