diff options
Diffstat (limited to 'build')
-rwxr-xr-x | build | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -76,8 +76,10 @@ copy_dir() { } concat_ftdetect() { + echo "augroup filetypedetect" > tmp/polyglot.vim cat config.vim >> tmp/polyglot.vim for f in ftdetect/*; do (echo '" '"$f"; cat "${f}"; echo) >> tmp/polyglot.vim; done + echo "augroup END" >> tmp/polyglot.vim rm -f ftdetect/* mv tmp/polyglot.vim ftdetect/ } |