I have *.q files ( that are very similar to other SQL ) and I want to make vim syntax highlight it in the same way as SQL.
how to make file extensions to syntax highlighting in vim?
1.1k Views Asked by yonatan At
2
There are 2 best solutions below
0
On
Include it in the ~/.vim/filetype.vim, as described at Vim FAQ 26.8:
" my filetype file
if exists("did_load_filetypes")
finish
endif
augroup filetypedetect
au! BufRead,BufNewFile *.x setfiletype c
augroup END
For this case it would be changed to something like this:
au! BufRead,BufNewFile *.q setfiletype sql
Check :help new-filetype for additional details.
create a
~/.vim/ftdetectdirectory if not existing.create a
~/.vim/ftdetect/<new-file-type-extention>.vimwith content: