summaryrefslogtreecommitdiffstats
path: root/indent/liquid.vim
diff options
context:
space:
mode:
Diffstat (limited to 'indent/liquid.vim')
-rw-r--r--indent/liquid.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/indent/liquid.vim b/indent/liquid.vim
index 2f729f00..2025dacd 100644
--- a/indent/liquid.vim
+++ b/indent/liquid.vim
@@ -1,3 +1,5 @@
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'liquid') == -1
+
" Vim indent file
" Language: Liquid
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
@@ -60,3 +62,5 @@ function! GetLiquidIndent(...)
let ind -= &sw * s:count(cline,'{%\s*end\w*$')
return ind
endfunction
+
+endif