It is an improved version of the vi editor distributed with most UNIX systems. Vim is distributed free as charityware
The official vim site is here.
This syntax file can be found here
The VBA package for syntax file can be found here
Description
Vera is a Hardware Verification Language sold by Synopsys.
This syntax also contains RVM keywords
Install details
Step 1: Drop the file in ~/.vim/syntax (if the directory does not exist then create it)
Note: If you are using vim 7.0 or better, you can source vera.vba to auto-magically install it regardless of which-ever flavor of
operating system you are using VIM on!!
vim vera.vba and followed by
:source %Step 2: Append following lines in ~/.vim/filetype.vim
if exists("did_load_filetypes")
finish
endif
augroup filetypedetect
au! BufRead,BufNewFile *.vr setfiletype vera
au! BufRead,BufNewFile *.vrh setfiletype vera
augroup END
happy vimming!!
