diff options
Diffstat (limited to 'ftplugin/elixir.vim')
-rw-r--r-- | ftplugin/elixir.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ftplugin/elixir.vim b/ftplugin/elixir.vim index 5571fcf5..576e4641 100644 --- a/ftplugin/elixir.vim +++ b/ftplugin/elixir.vim @@ -1,3 +1,5 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elixir') == -1 + " Vim filetype plugin " Language: Elixir " Maintainer: Carlos Galdino <carloshsgaldino@gmail.com> @@ -23,3 +25,5 @@ endif setlocal comments=:# setlocal commentstring=#\ %s + +endif |