> CentOS > CentOS教程 >

CentOS最小化安装后安装vim

系统最小安装默认没有安装vim,

[开始安装]Install vim

 
yum -y install vim

[设置configure vim

vim /etc/profile

#最后一行添加

alias vi='vim'

source /etc/profile

[3]configure format vim

 
vim ~/.vimrc
set nocompatible
set tabstop=4
set softtabstop=4
set shiftwidth=4
set number
set list
set showmatch
set wrap

source ~/.vimrc

问题解决1:

【“Swap file ".文件名.swp" already exists![O]pen Read-Only, (E)dit anyway, (R)ecover, (Q)uit:】)

1
处理方法: 打开 /etc/vimrc 并添加 set noswapfile

(责任编辑:IT)