From 92ab75408df8bff49bb29e113b3cc159d1ac3105 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Sat, 18 Jul 2015 23:05:45 +0200 Subject: Allow for disabling individual languages, closes #66 --- indent/liquid.vim | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'indent/liquid.vim') 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 @@ -60,3 +62,5 @@ function! GetLiquidIndent(...) let ind -= &sw * s:count(cline,'{%\s*end\w*$') return ind endfunction + +endif -- cgit v1.2.3