1
0
mirror of https://github.com/gryf/.vim.git synced 2026-04-25 21:51:24 +02:00

Added support for vimrc.local

This commit is contained in:
Roman Dobosz
2017-11-30 01:56:54 +01:00
parent 3de6240eea
commit 53866261b9
2 changed files with 6 additions and 0 deletions
+1
View File
@@ -5,3 +5,4 @@ view/*
tags tags
.netrwhist .netrwhist
autoload/plug.vim autoload/plug.vim
vimrc.local
+5
View File
@@ -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: