mirror of
https://github.com/gryf/.vim.git
synced 2025-12-17 19:40:29 +01:00
Added support for vimrc.local
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,3 +5,4 @@ view/*
|
|||||||
tags
|
tags
|
||||||
.netrwhist
|
.netrwhist
|
||||||
autoload/plug.vim
|
autoload/plug.vim
|
||||||
|
vimrc.local
|
||||||
|
|||||||
5
vimrc
5
vimrc
@@ -719,4 +719,9 @@ if $TERM == 'linux' && !has('gui_running')
|
|||||||
colorscheme pablo
|
colorscheme pablo
|
||||||
endif
|
endif
|
||||||
"}}}
|
"}}}
|
||||||
|
" Custom: custom config per machine {{{
|
||||||
|
if filereadable($MYVIMRC . '.local')
|
||||||
|
exec "source " . $MYVIMRC . '.local'
|
||||||
|
endif
|
||||||
|
"}}}
|
||||||
" vim:ts=4:sw=4:wrap:fdm=marker:
|
" vim:ts=4:sw=4:wrap:fdm=marker:
|
||||||
|
|||||||
Reference in New Issue
Block a user