mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-12 05:23:51 -05:00
10 lines
302 B
VimL
10 lines
302 B
VimL
if !exists("did_load_polyglot")
|
|
if expand("<sfile>:p") =~# '/pack/' && (exists("did_load_filetypes") || exists("did_indent_on"))
|
|
echohl WarningMsg
|
|
echo "Improper install of vim-polyglot. Please add 'packload' to .vimrc"
|
|
echohl None
|
|
end
|
|
filetype plugin indent on
|
|
syntax enable
|
|
endif
|