1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Drop local vimrc files iin favor of thinca/vim-localrc plugin.

This commit is contained in:
2024-07-13 17:39:06 +02:00
parent 8497d7595a
commit 0da4596005
2 changed files with 1 additions and 22 deletions

12
vimrc
View File

@@ -64,12 +64,7 @@ Plug 'vim-scripts/mako.vim', { 'for': 'mako' }
Plug 'vim-scripts/mako.vim--Torborg', { 'for': 'mako' }
Plug 'vimwiki/vimwiki'
Plug 'will133/vim-dirdiff'
" Custom plugins: custom plugins per machine {{{
" if filereadable($MYVIMRC . '.local')
if filereadable(fnamemodify($MYVIMRC, ':h') . '/plugins.local')
exec "source " . fnamemodify($MYVIMRC, ':h') . '/plugins.local'
endif
Plug 'thinca/vim-localrc'
call plug#end()
" }}}
@@ -779,10 +774,5 @@ endif
silent! exec 'colorscheme ' . s:_colorscheme
"}}}
" Custom: custom config per machine {{{
if filereadable($MYVIMRC . '.local')
exec "source " . $MYVIMRC . '.local'
endif
"}}}
" vim:ts=4:sw=4:wrap:fdm=marker: