linux debian vi,Debian 安装 vim

1、安装vim

root@dnnp:~# aptitude install vim

2、配置vim为默认的系统编辑器

root@dnnp:~# update-alternatives --config editor

3、OK 再打开crontab 就是vim编辑器了

debian安装vim

apt-get install vim

cp /usr/share/vim/vim70/vimrc_example.vim /etc/vim/vimrc.local

VIM是GNU/Linux下最基本的编辑工具,我以前在Windows和Fedora下使用的时候都对它进行基本的加色和标尺设定,Debian默认也有VIM,但是默认安装的是Compact版,有很多好用的功能被屏蔽。启用那些高级功能需要安装完整版的VIM。

apt-get install vim

大约占用20多M,然后编辑.vimrc

set nocp

set ru

set nu

syntax on

set sw=2

set ts=2

set nocp:禁止使用VI兼容模式

set ru:显示标尺

set nu:显示行号

syntax on:语法高亮

set sw=2:自动缩进2字符(为了和emacs默认的值对应)

set ts=2:tab宽度2字符(同上)

保存后退出,熟悉而强大的VIM就回来了。

你可能感兴趣的:(linux,debian,vi)