This repository provides very basic syntax highlighting for the Oberon programming language.
This should be usable with most vim plugin managers. I use vim-plug but others should potentially work too. This can be installed with something like
call plug#begin()
[ ... ]
Plug 'ericscharff/vim-oberon'
call plug#end()
The syntax highlighting can be enabled by setting the correct file type, e.g.
au BufNewFile,BufRead *.Mod set filetype=oberon
au BufNewFile,BufRead *.ob set filetype=oberon
I use this for synatx highlighting for my Oberon compiler which is a self-hosting Oberon compiler.