Razor .cshtml syntax highlighting for vim?

Viewed 4163

I'm looking for a .cshtml vim syntax file. Are there any projects that haven't made it to www.vim.org?

5 Answers

Settled with adding this to .vimrc

" add html syntax to dotnet razor files
autocmd BufNewFile,BufRead *.cshtml set syntax=html
Related