centos下的vim安装

时间:2021-09-28 04:57:25

一 . 大家的都知道Linux下是自带vi ,那么我们如何对vi使用呢?

  1. 在centos下打开terminal,通过
    touch aa.txt //新建一个名称为aa的文本文件。


2. 用vi打开该文本

    vi aa.txt


3. 对文本进行操作,常用操作自行查找

二. centos下安装vim,因为vi的功能没有vim丰富

用yum查找源中的VIM包,不知安装哪个合适。

yum search vim
vim-X11.i386 : The VIM version of the vi editor for the X Window System.
vim-common.i386 : The common files needed by any version of the VIM editor.
vim-enhanced.i386 : A version of the VIM editor which includes recent enhancements.
vim-minimal.i386 : A minimal version of the VIM editor.

到已安装VIM的系统中查看VIM属于哪个软件包:

which vim
/usr/bin/vim
rpm -qf /usr/bin/vim
vim-enhanced-7.0.109-7.el5

安装VIM:

yum install vim-enhanced

安装好界面如下:

centos下的vim安装