Author: Benjamin Hoffstein
Contact: ben@hoffstein.net
-
Put the sqlserver.vim file in your syntax directory.
- On Windows, this is $VIM/vimfiles/syntax or $HOME/vimfiles/syntax.
- On Linux, this is $HOME/.vim/syntax or $VIM/vimfiles/syntax.
-
If you want to make this your default syntax file for .sql files, add the following to your vimrc:
let g:sql_type_default = "sqlserver"
-
If you want to associate this syntax file with another extension, add the following to your vimrc (replace "ext" with the desired extension):
au BufNewFile,BufRead *.ext set filetype=sqlserver
-
The file contains instructions for enabling/disabling several highlighting options (for example, system stored procedures). By default, all syntax is highlighted.