summaryrefslogtreecommitdiffstats
path: root/ftplugin/raml.vim
blob: 7c83588ee83e103856ce0d49f8b2d08a66b9d649 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
let files = filter(globpath(&rtp, 'ftplugin/raml.vim', 1, 1), { _, v -> v !~ "vim-polyglot" && v !~ $VIMRUNTIME && v !~ "after" })
if len(files) > 0
  exec 'source ' . files[0]
  finish
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'raml') == -1

set ts=2 sts=2 sw=2 et

endif