mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-09 12:03:53 -05:00
12 lines
196 B
Bash
Executable File
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!'"
|
|
)
|