added checks for local override files

This commit is contained in:
Stefen Auris 2021-07-27 03:51:59 -04:00
parent eb28865d05
commit 4528b4cc02
2 changed files with 9 additions and 0 deletions

View file

@ -44,6 +44,10 @@ bind m \
bind M \ bind M \
set-option -g mouse off \;\ set-option -g mouse off \;\
display 'Mouse: OFF' display 'Mouse: OFF'
##File for Local Overrides, if needed
if-shell "[ -f ~/.tmux_local.conf ]" 'source ~/.tmux_local.conf'
#plugin settings #plugin settings
# Prefix Highlight: 'L' for left only, 'R' for right only and 'LR' for both # Prefix Highlight: 'L' for left only, 'R' for right only and 'LR' for both
set -g @tmux_power_prefix_highlight_pos 'LR' set -g @tmux_power_prefix_highlight_pos 'LR'

View file

@ -37,6 +37,11 @@ function! UserConfig()
" Override the default settings. " Override the default settings.
" Uncomment the following line to disable relative number. " Uncomment the following line to disable relative number.
" set norelativenumber " set norelativenumber
"File for Local Overrides
let $LOCALFILE=expand("~/.vimrc_local")
if filereadable($LOCALFILE)
source $LOCALFILE
endif
" Adding extras. " Adding extras.
" Uncomment the following line If you have installed the powerline fonts. " Uncomment the following line If you have installed the powerline fonts.