VIM安装与配置
Posted zhidongjian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VIM安装与配置相关的知识,希望对你有一定的参考价值。
1.1 安装vim
终端输入命令安装
centos下安装vim: yum install vim
Ubuntu下安装vim:sudo apt-get install vim
注意:如果安装时提示权限不够,You need to be root to perform this command.就使用root权限;
[[email protected] ~]$ yum install vim
Loaded plugins: fastestmirror, refresh-packagekit, security
You need to be root to perform this command.
[[email protected] ~]$ su root
Password:
[[email protected] centos]#
1.2 配置vim
在home目录下,即cd ~ 下 vi .vimrc
[email protected]:~/xb/c++$ vi ~/.vimrc
set nu
set tabstop=4
set autoindent
set smartindent
syntax on
以上是关于VIM安装与配置的主要内容,如果未能解决你的问题,请参考以下文章