An open API service indexing awesome lists of open source software.

https://github.com/robroseknows/lark-vim

Vim syntax highlighting for Lark.
https://github.com/robroseknows/lark-vim

lark syntax-highlighting vim

Last synced: 6 days ago
JSON representation

Vim syntax highlighting for Lark.

Awesome Lists containing this project

README

          

Vim, syntax highlighting for ANTLR versions 3 and 4.

If you are using [VundleVim/Vundle.vim](https://github.com/VundleVim/Vundle.vim), add `Plugin 'dylon/vim-antlr'` to your `.vimrc` and install it via `:PluginInstall`. Otherwise, copy the files `antlr3.vim` and `antlr4.vim` into ~/.vim/syntax, and add the following to your `.vimrc`:
```vim
au BufRead,BufNewFile *.g set filetype=antlr3
au BufRead,BufNewFile *.g4 set filetype=antlr4
```