vim一款優秀的系統文本編輯器,常用於Linux系統中,使用vim需自行安裝,且需要配置其開發環境,那麼在CentOS 6.2中,要如何搭建vim開發環境呢?下面小編就給大家介紹下CentOS 6.2配置vim開發環境的方法,一起來學習下吧。
1.首先使用Ubuntu(所在ip為192.168.16.230)翻牆登陸http://www.vim.org/,下載其上面的vim相關插件到Ubuntu的下載目錄下:
cd ~/下載/
http://ctags.sourceforge.net
http://cscope.sourceforge.net/
http://www.vim.org/scripts/script.php?script_id=273
http://www.vim.org/scripts/script.php?script_id=1581
http://www.vim.org/scripts/script.php?script_id=197
http://www.vim.org/scripts/script.php?script_id=95
http://www.vim.org/scripts/script.php?script_id=159
http://www.vim.org/scripts/script.php?script_id=31
http://www.vim.org/scripts/script.php?script_id=2620
http://www.vim.org/scripts/download_script.php?src_id=9679
http://www.vim.org/scripts/script.php?script_id=42
http://www.vim.org/scripts/script.php?script_id=311
使用sftp將這些壓縮包上傳到目標服務器CentOS 6.2上面
cd /usr/local/src
sftp [email protected]
ls
put a.vim ***
quit
退出sftp,下面開始安裝。
2.在主目錄下新建目錄,開始安裝
mkdir -p .vim/plugin
mkdir -p .vim/doc
mkdir -p .vim/tags
mkdir -p ~/.vim/syntax
將上述文件包轉移到~/.vim/下面,逐個安裝插件:
2.1 ctags插件(Exuberant Ctags)
生成tag文件的插件,從如下官網
http://ctags.sourceforge.net
下載到如下源碼包ctags-5.8.tar.gz,下面使用源碼安裝方式
tar zxvf ctags-5.8.tar.gz
cd ctags-5.8
。/configure
make
make install
cd 。。/
發現ctags是個可執行文件,被復制到/usr/local/bin下面了。你可以使用
ctags --help
來查看該執行文件的命令選項。
tags文件是由ctags程序產生的一個索引文件, ctags程序其實叫“Exuberant Ctags”, 是Unix上面ctags程序的替代品, 並且比它功能強大, 是大多數Linux發行版上默認的ctags程序。
上一頁123456下一頁共6頁