前端之家收集整理的这篇文章主要介绍了
给Vim配置Scala语法高亮显示,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
第一步,执行下面这个脚本:
mkdir -p ~/.vim/{ftdetect,indent,Syntax} && for d in ftdetect indent Syntax ; do curl -o ~/.vim/$d/scala.vim https://raw.githubusercontent.com/gchen/scala.vim/master/scala.vim; done
第二步,在~/.vimrc中添加:
Syntax on
原文链接:https://www.f2er.com/bash/388477.html