真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Centos7怎么編譯安裝vim8

這篇文章主要講解了“Centos7怎么編譯安裝vim8”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“Centos7怎么編譯安裝vim8”吧!

創(chuàng)新互聯(lián)是專業(yè)的鹿邑網(wǎng)站建設(shè)公司,鹿邑接單;提供成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作,網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行鹿邑網(wǎng)站開發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!

環(huán)境

  • Centos7.7 Minimal

  • vim-8.2.221

安裝VIM8

需要先安裝依賴包還有常用工具包:

[root@localhost ~]# yum -y install git ncurses-devel ruby ruby-devel lua lua-devel perl perl-devel python3 python3-devel python2-devel perl-ExtUtils-Embed lrzsz cmake wget gcc gcc-c++ unzip

從github倉(cāng)庫(kù)下載最新的vim安裝包

[root@localhost ~]# git clone https://github.com/vim/vim

開始編譯安裝vim

[root@localhost ~]# cd vim-master/
[root@localhost vim-master]# ./configure --with-features=huge \
            --enable-rubyinterp=yes \
            --enable-luainterp=yes \
            --enable-perlinterp=yes \
            --enable-python3interp=yes \
            --enable-pythoninterp=yes \
            --with-python-config-dir=/usr/lib64/python2.7/config \
            --with-python3-config-dir=/usr/lib64/python3.6/config-3.6m-x86_64-linux-gnu \
            --enable-fontset=yes \
            --enable-cscope=yes \
            --enable-multibyte \
            --disable-gui \
            --enable-fail-if-missing \
            --prefix=/usr/local \
            --with-compiledby='Professional operations'
[root@localhost vim-master]# make VIMRUNTIMEDIR=/usr/local/share/vim/vim82 && make install
  1. --enable-fail-if-missing 表示問(wèn)題會(huì)提示報(bào)錯(cuò),并停止

  2. --enable-***interp=yes 表示加入***支持

  3. --with-***-config-dir=*** 表示指定配置文件路徑

  4. make VIMRUNTIMEDIR=*** 表示指定VIM可執(zhí)行文件的位置

執(zhí)行vim查看一下版本

[root@localhost ~]# vim

Centos7怎么編譯安裝vim8

如何安裝vim插件?

Vim編輯器安裝自己喜歡的插件之后,使用起來(lái)會(huì)方便許多。

安裝插件管理器

這里安裝兩個(gè)工具,一個(gè)是pathogen ,還有一個(gè)就是vimogen。
Pathogen插件用來(lái)集中管理vim的插件,Vimogen配合pathogen使用的,在~/.vimogen_repos中添加插件的地址,然后運(yùn)行vimogen,自動(dòng)安裝.vimogen_repos里面的插件,插件安裝的目錄是pathogen管理的目錄。

先安裝pathogen:

[root@localhost ~]# mkdir -p .vim/{autoload,bundle}
[root@localhost ~]# curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim

在家目錄創(chuàng)建.vimrc文件,如果有就不用創(chuàng)建了。在.vimrc文件里面添加如下內(nèi)容:

vim ~/.vimrc
execute pathogen#infect()
syntax on
filetype plugin indent on
set hlsearch
set backspace=indent,eol,start

然后再安裝vimogen:

[root@localhost ~]# git clone https://github.com/rkulla/vimogen
[root@localhost ~]# cp -p vimogen/vimogen /usr/local/bin/

創(chuàng)建~/.vimogen_repos文件,這里面的插件是我需要用到的。

[root@localhost ~]# vim ~/.vimogen_repos
https://github.com/ianva/vim-youdao-translater
https://github.com/scrooloose/nerdtree

Centos7怎么編譯安裝vim8
運(yùn)行vimogen 命令,然后輸入1,進(jìn)行安裝操作:

[root@localhost ~]# vimogen
1) INSTALL
2) UNINSTALL
3) UPDATE
4) EXIT
Enter the number of the menu option to perform: 1

Centos7怎么編譯安裝vim8
Centos7怎么編譯安裝vim8
Centos7怎么編譯安裝vim8

配置.vimrc文件,啟用剛剛安裝的兩個(gè)插件

[root@localhost ~]# vim .vimrc
execute pathogen#infect()
syntax on
filetype plugin indent on
set hlsearch
set backspace=indent,eol,start
"===============nerdtree=================
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | endif
map:NERDTreeToggleautocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
"===============vim-youdao-translator=================
vnoremap:Ydvnnoremap:Ydcnoremapyd :Yde

演示一下插件

nerdtree

nerdtree實(shí)現(xiàn)在左側(cè)顯示目錄樹功能,效果如下:
按ctrl+n鍵 來(lái)打開或關(guān)閉目錄樹。
Centos7怎么編譯安裝vim8
可以在目錄樹里面創(chuàng)建文件或目錄。在目錄樹激活狀態(tài)下,按m,打開菜單,然后可以選擇創(chuàng)建,刪除等操作。
Centos7怎么編譯安裝vim8
輸入a,來(lái)創(chuàng)建文件或目錄
Centos7怎么編譯安裝vim8
加上“/”是創(chuàng)建目錄,不加”/”創(chuàng)建文件。

vim-youdao-translator

目前只會(huì)用這個(gè)插件劃詞翻譯,哈哈哈

光標(biāo)移動(dòng)到單詞上面,然后按ctrl+t就可以翻譯了,譯文會(huì)在編輯器底部的命令欄顯示
Centos7怎么編譯安裝vim8

感謝各位的閱讀,以上就是“Centos7怎么編譯安裝vim8”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)Centos7怎么編譯安裝vim8這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!


當(dāng)前文章:Centos7怎么編譯安裝vim8
標(biāo)題URL:http://weahome.cn/article/gjogji.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部