中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Centos7怎么編譯安裝vim8

發布時間:2021-08-31 21:14:16 來源:億速云 閱讀:137 作者:chen 欄目:建站服務器

這篇文章主要講解了“Centos7怎么編譯安裝vim8”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Centos7怎么編譯安裝vim8”吧!

環境

  • 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倉庫下載最新的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 表示問題會提示報錯,并停止

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

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

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

執行vim查看一下版本

[root@localhost ~]# vim

Centos7怎么編譯安裝vim8

如何安裝vim插件?

Vim編輯器安裝自己喜歡的插件之后,使用起來會方便許多。

安裝插件管理器

這里安裝兩個工具,一個是pathogen ,還有一個就是vimogen。
Pathogen插件用來集中管理vim的插件,Vimogen配合pathogen使用的,在~/.vimogen_repos中添加插件的地址,然后運行vimogen,自動安裝.vimogen_repos里面的插件,插件安裝的目錄是pathogen管理的目錄。

先安裝pathogen:

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

在家目錄創建.vimrc文件,如果有就不用創建了。在.vimrc文件里面添加如下內容:

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/

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

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

Centos7怎么編譯安裝vim8
運行vimogen 命令,然后輸入1,進行安裝操作:

[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文件,啟用剛剛安裝的兩個插件

[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實現在左側顯示目錄樹功能,效果如下:
按ctrl+n鍵 來打開或關閉目錄樹。
Centos7怎么編譯安裝vim8
可以在目錄樹里面創建文件或目錄。在目錄樹激活狀態下,按m,打開菜單,然后可以選擇創建,刪除等操作。
Centos7怎么編譯安裝vim8
輸入a,來創建文件或目錄
Centos7怎么編譯安裝vim8
加上“/”是創建目錄,不加”/”創建文件。

vim-youdao-translator

目前只會用這個插件劃詞翻譯,哈哈哈

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

感謝各位的閱讀,以上就是“Centos7怎么編譯安裝vim8”的內容了,經過本文的學習后,相信大家對Centos7怎么編譯安裝vim8這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

休宁县| 安阳市| 汉寿县| 白沙| 白水县| 卫辉市| 杨浦区| 邢台县| 宝坻区| 富源县| 阜城县| 册亨县| 河津市| 凭祥市| 郯城县| 共和县| 定州市| 双桥区| 沙雅县| 达尔| 安阳县| 荥经县| 松潘县| 祁连县| 平利县| 且末县| 吉木萨尔县| 罗山县| 卢湾区| 和政县| 汶川县| 扎兰屯市| 崇仁县| 乐亭县| 镇江市| 贵州省| 瓮安县| 渝北区| 克什克腾旗| 友谊县| 沅江市|