Files
vim-polyglot/scripts/test
2020-08-24 12:34:24 +02:00

12 lines
196 B
Bash
Executable File

#!/bin/bash
set -e
vim --clean -N -u <(
echo "filetype plugin indent on"
echo "syntax enable"
echo "let &rtp='$PWD,'.&rtp"
echo "source scripts/test_filetypes.vim"
echo "exec ':q!'"
)