本文介绍了你的 .vimrc 里有什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Vi 和 Vim 允许非常棒的自定义,通常存储在 .vimrc
文件中.程序员的典型功能是语法高亮、智能缩进等.
Vi and Vim allow for really awesome customization, typically stored inside a .vimrc
file. Typical features for a programmer would be syntax highlighting, smart indenting and so on.
你的 .vimrc 中还有哪些其他高效编程技巧?
我最感兴趣的是重构、自动类和类似的生产力宏,尤其是 C#.
I am mostly interested in refactorings, auto classes and similar productivity macros, especially for C#.
推荐答案
我最近添加的是突出显示当前行
set cul # highlight current line
hi CursorLine term=none cterm=none ctermbg=3 # adjust color
这篇关于你的 .vimrc 里有什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!