Skip to content Skip to main navigation Skip to footer

在FreeBSD 系统下安装 VIM 文本编辑器

如何在FreeBSD系统的命令行下安装 VIM文本编辑器呢?如何才能在能有图形界面的FreeBSD 系统里安装 VIM文本编辑器?
$nbsp;
首先要更新port tree,输入下面的命令:

portsnap fetch update
 

$nbsp;
接着开始安装vim,输入命令:

cd /usr/ports/editors/vim
make WITHOUT_X11=yes install clean
 

$nbsp;
配置vim
输入命令:

cp /usr/local/share/vim/vim72/vimrc_example.vim /usr/local/share/vimrc
 

创建你自己的vimrc 文件,输入命令:

vi ~/.vimrc
 

添加下面的内容:

set nocompatible
filetype on
filetype indent on
filetype plugin on
set laststatus=2
syntax on
 

之后保存退出,即可。
$nbsp;
更多参考:
1. Linux 下 vi/vim 文本编辑器超详细使用指南
2. 29个最基本的 vim /vi 命令
3. vim 命令大全 / vi 命令大全

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.