mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 11:33:52 -05:00
14 lines
231 B
Bash
Executable File
14 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
vim --clean -N --cmd "
|
|
filetype plugin indent on
|
|
syntax enable
|
|
let &rtp='$PWD,'.&rtp
|
|
source ftdetect/polyglot.vim
|
|
source scripts/test_extensions.vim
|
|
source scripts/test_filetypes.vim
|
|
exec ':q!'
|
|
"
|