Files
miaou-bash/etc/vim/vimrc.local.azerty
T
2026-08-31 08:38:32 +04:00

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