9 lines
242 B
Plaintext
9 lines
242 B
Plaintext
let additionals = [ "core", "miaou", "rookie", "extra", "azerty" ]
|
|
for additional in additionals
|
|
let s:vimrc_path = "/etc/vim/vimrc." . additional
|
|
if filereadable(s:vimrc_path)
|
|
execute "source " . expand(s:vimrc_path)
|
|
endif
|
|
endfor
|
|
|