Чтение настроек для текущего компьютера

This commit is contained in:
Andrei Astafev 2020-03-30 09:41:46 +03:00
parent 4bc781af7e
commit 3bc0d55525

7
vimrc
View File

@ -647,3 +647,10 @@ augroup asciidoctor
au BufEnter *.adoc,*.asciidoc call AsciidoctorMappings() au BufEnter *.adoc,*.asciidoc call AsciidoctorMappings()
augroup END augroup END
"}}} "}}}
"{{{ Чтение настроек для текущего компьютера из каталога $HOME/.vim/hosts
let s:host_vimrc = $HOME . '/.vim/hosts/' . hostname() . '.vimrc'
if filereadable(s:host_vimrc)
execute 'source ' . s:host_vimrc
endif
"}}}