diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-08-18 23:09:35 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-08-18 23:09:35 +0200 |
commit | e521ba3ae205b2c79df9030a3db767405caf0457 (patch) | |
tree | 931693221fcf94669bfa1f69ac4fe65eb48b4a20 /ftdetect | |
parent | ee4f51587d8e306b2d9a4b0067c572a447b34b60 (diff) | |
download | vim-polyglot-e521ba3ae205b2c79df9030a3db767405caf0457.tar.gz vim-polyglot-e521ba3ae205b2c79df9030a3db767405caf0457.zip |
Add fennel support, closes #514
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index dfcab62f..028b8eb4 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -1147,6 +1147,10 @@ if index(g:polyglot_disabled, 'jsonnet') == -1 au BufNewFile,BufRead *.libsonnet set ft=jsonnet endif +if index(g:polyglot_disabled, 'fennel') == -1 + au BufNewFile,BufRead *.fnl set ft=fennel +endif + " restore Vi compatibility settings let &cpo = s:cpo_save unlet s:cpo_save
\ No newline at end of file |