vim: remove local configs
I actually don't have a use case for this at the moment and removing it avoids running arbitrary vimscript unintentionally. I can always add it back later if a real world use case arises...
This commit is contained in:
parent
2deb497b0e
commit
7d3659e2f3
1 changed files with 0 additions and 7 deletions
|
@ -1,7 +1,6 @@
|
|||
if $XDG_CONFIG_HOME == "" | let $XDG_CONFIG_HOME="~/.config" | endif
|
||||
if $XDG_CACHE_HOME == "" | let $XDG_CACHE_HOME="~/.cache" | endif
|
||||
if $XDG_DATA_HOME == "" | let $XDG_DATA_HOME="~/.local/share" | endif
|
||||
if $LOCAL_CONFIG == "" | let $LOCAL_CONFIG="~/.local/etc" | endif
|
||||
|
||||
" Options {{{
|
||||
set backspace=indent,eol,start " sane backspace behavior
|
||||
|
@ -210,9 +209,3 @@ augroup vimrc " {{{
|
|||
autocmd BufWritePost init.vim source %
|
||||
augroup END " }}}
|
||||
|
||||
for extra_vimrc in expand("$LOCAL_CONFIG/nvim/*", v:false, v:true)
|
||||
if filereadable(extra_vimrc)
|
||||
exec "source " . extra_vimrc
|
||||
endif
|
||||
endfor
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue