diff options
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index d6a7fea1..a3130217 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -1343,6 +1343,19 @@ autocmd BufNewFile,BufRead *.toml,Gopkg.lock,Cargo.lock,*/.cargo/config,*/.cargo augroup end endif +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'tptp') == -1 + augroup filetypedetect + " tptp, from tptp.vim in c-cube/vim-tptp + +au BufRead,BufNewFile *.p set filetype=tptp +au BufRead,BufNewFile *.p set syntax=tptp +au BufRead,BufNewFile *.tptp set filetype=tptp +au BufRead,BufNewFile *.tptp set syntax=tptp +au BufRead,BufNewFile *.ax set filetype=tptp +au BufRead,BufNewFile *.ax set syntax=tptp + augroup end +endif + if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'twig') == -1 augroup filetypedetect " twig, from twig.vim in lumiliet/vim-twig |