centos下vi语法高亮问题
Posted new-journey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos下vi语法高亮问题相关的知识,希望对你有一定的参考价值。
在CentoS下面使用root登录,执行vi时会发现没有语法高亮.
一般系统默认就把vi alias到vim才对.
在.bashrc中加上alias后搞定.
vi ~/.bashrc alias vi=’vim’
vi ~/.vimrc syntax on set showcmd ” Show (partial) command in status line. set showmatch ” Show matching brackets. set ignorecase ” Do case insensitive matching set smartcase ” Do smart case matching set incsearch ” Incremental search set autowrite ” Automatically save before commands like :next and :make set hidden ” Hide buffers when they are abandoned
以上是关于centos下vi语法高亮问题的主要内容,如果未能解决你的问题,请参考以下文章