summaryrefslogtreecommitdiffstats
path: root/plugin/polyglot.vim
blob: ab74485f66c5be82b9bd83d39c6eee6a00040896 (plain) (blame)
1
2
3
4
5
6
7
8
9
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