1. 程式人生 > >centos7使用vim打造強大的python IDE

centos7使用vim打造強大的python IDE

ted cin remove pyc edi command foo solar new

編譯升級vim

centos7.3自帶的vim是7.4.*版本, YouCompleteMe需要Vim 7.4.1578+
我這裏編譯安裝vim8.0


# 移除舊版本
sudo yum remove vim -y
# 安裝必要組件
sudo yum install ncurses-devel python-devel -y
# 下載源碼編譯安裝
git clone https://github.com/vim/vim.git
cd vim/src
# 根據自己實際情況設置編譯參數
./configure --with-features=huge --=yes --enable-cscope --enable-fontset --with-python-config-dir=/usr/lib64/python2.7/config –enable-python3interp --with-python-config-dir=/usr/lib/python3.6/config --enable-multibyte --with-features=huge --prefix=/usr/local/vim/ 
make -j2 && make install

編譯參數說明:

  • [ ] –with-features=huge:支持最大特性
  • [ ] –enable-rubyinterp:打開對ruby編寫的插件的支持
  • [ ] –enable-pythoninterp:打開對python編寫的插件的支持
  • [ ] –enable-python3interp:打開對python3編寫的插件的支持
  • [ ] –enable-luainterp:打開對lua編寫的插件的支持
  • [ ] –enable-perlinterp:打開對perl編寫的插件的支持
  • [ ] –enable-multibyte:打開多字節支持,可以在Vim中輸入中文
  • [ ] –enable-cscope:打開對cscope的支持
  • [ ] –with-python-config-dir=/usr/lib64/python2.7/config 指定python 路徑
  • [ ] –with-python-config-dir=/usr/lib64/python3.5/config 指定python3路徑

註意:必須帶上Python編寫插件支持,最好帶上Python路徑,否則使用時會報這個錯誤:YouCompleteMe unavailable: requires Vim compiled with Python (2.6+ or 3.6+) support

安裝完成後,vim就安裝在了/usr/local/vim/bin,添加環境變量,把該目錄加入到PATH方便terminal全局使用

[root@aiker ~]# cat /etc/profile.d/vim.sh 
export PATH=$PATH:/usr/local/vim/bin/

查看版本和支持信息:

[root@aiker ~]# vim --version
VIM - Vi IMproved 8.1 (2018 May 18, compiled Aug 20 2018 03:23:45)
Included patches: 1-299
Compiled by root@aiker
Huge version without GUI.  Features included (+) or not (-):
+acl               +extra_search      +mouse_netterm     +tag_old_static
+arabic            +farsi             +mouse_sgr         -tag_any_white
+autocmd           +file_in_path      -mouse_sysmouse    -tcl
+autochdir         +find_in_path      +mouse_urxvt       +termguicolors
-autoservername    +float             +mouse_xterm       +terminal
-balloon_eval      +folding           +multi_byte        +terminfo
+balloon_eval_term -footer            +multi_lang        +termresponse
-browse            +fork()            -mzscheme          +textobjects
++builtin_terms    +gettext           +netbeans_intg     +timers
+byte_offset       -hangul_input      +num64             +title
+channel           +iconv             +packages          -toolbar
+cindent           +insert_expand     +path_extra        +user_commands
-clientserver      +job               -perl              +vartabs
-clipboard         +jumplist          +persistent_undo   +vertsplit
+cmdline_compl     +keymap            +postscript        +virtualedit
+cmdline_hist      +lambda            +printer           +visual
+cmdline_info      +langmap           +profile           +visualextra
+comments          +libcall           +python            +viminfo
+conceal           +linebreak         -python3           +vreplace
+cryptv            +lispindent        +quickfix          +wildignore
+cscope            +listcmds          +reltime           +wildmenu
+cursorbind        +localmap          +rightleft         +windows
+cursorshape       -lua               -ruby              +writebackup
+dialog_con        +menu              +scrollbind        -X11
+diff              +mksession         +signs             -xfontset
+digraphs          +modify_fname      +smartindent       -xim
-dnd               +mouse             +startuptime       -xpm
-ebcdic            -mouseshape        +statusline        -xsmp
+emacs_tags        +mouse_dec         -sun_workshop      -xterm_clipboard
+eval              -mouse_gpm         +syntax            -xterm_save
+ex_extra          -mouse_jsbterm     +tag_binary        
   system vimrc file: "$VIM/vimrc"
     user vimrc file: "$HOME/.vimrc"
 2nd user vimrc file: "~/.vim/vimrc"
      user exrc file: "$HOME/.exrc"
       defaults file: "$VIMRUNTIME/defaults.vim"
  fall-back for $VIM: "/usr/local/vim/share/vim"
Compilation: gcc -std=gnu99 -c -I. -Iproto -DHAVE_CONFIG_H     -g -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1       
Linking: gcc -std=gnu99   -L/usr/local/lib -Wl,--as-needed -o vim        -lm -ltinfo -lnsl  -lselinux  -ldl    -L/usr/lib64/python2.7/config -lpython2.7 -lpthread -ldl -lutil -lm -Xlinker -export-dynamic  

安裝應用:

pip install pep8 flake8 pyflakes isort yapf autopep8 powerline-status

安裝Vundle和YouCompleteMe

Vundle是Vim的插件管理工具,官方文檔:https://github.com/VundleVim/Vundle.vim

安裝步驟很簡單:

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

添加顏色主題方案

我這裏使用monokai 配色方案 :https://github.com/sickill/vim-monokai

下載對應的monokai.vim 文件 放到 ~/.vim/colors/ 即可

mkdir ~/.vim/colors
wget -O ~/.vim/colors/monokai.vim https://raw.githubusercontent.com/sickill/vim-monokai/master/colors/monokai.vim
vim .vimrc

清空後更改為如下內容:

set encoding=utf-8
"去掉vi的一致性"
set nocompatible
"顯示行號"
"set number
set nobackup
set nowb
set noswapfile
set noundofile
set showcmd
" 隱藏滾動條"    
"set guioptions-=r 
"set guioptions-=L
"set guioptions-=b
"隱藏頂部標簽欄"
"set showtabline=0
"設置字體"
"set guifont=Monaco:h13         
syntax on    "開啟語法高亮"
"let g:solarized_termcolors=256    "solarized主題設置在終端下的設置"
set background=dark        "設置背景色"
"colorscheme ron
colorscheme monokai
set nowrap    "設置不折行"
set fileformat=unix    "設置以unix的格式保存文件"
set cindent        "設置C樣式的縮進格式"
set tabstop=4    "設置table長度"
set softtabstop=4
set noexpandtab
set shiftwidth=4        "同上"
set showmatch    "顯示匹配的括號"
set scrolloff=5        "距離頂部和底部5行"
set laststatus=2    "命令行為兩行"
set fenc=utf-8      "文件編碼"
set backspace=2
set mouse=c        "啟用鼠標"
set selection=exclusive
set selectmode=mouse,key
"set matchtime=5
set ignorecase        "忽略大小寫"
"set incsearch
set hlsearch        "高亮搜索項"
"set noexpandtab        "不允許擴展table"
set whichwrap+=<,>,h,l
set autoread
"set cursorline        "突出顯示當前行"
"set cursorcolumn        "突出顯示當前列"

" C++ part
set exrc
set secure

augroup project
    autocmd!
    autocmd BufRead,BufNewFile *.h,*.c set filetype=c.doxygen
    autocmd BufRead,BufNewFile *.hpp,*.cpp set filetype=cpp.doxygen
augroup END

set makeprg=make\ -C\ -j64
nnoremap <F3> :make!<cr>

"Vundle
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin ‘VundleVim/Vundle.vim‘
Plugin ‘Valloric/YouCompleteMe‘
Plugin ‘Lokaltog/vim-powerline‘
Plugin ‘scrooloose/nerdtree‘
Plugin ‘Yggdroot/indentLine‘
Plugin ‘jiangmiao/auto-pairs‘
Plugin ‘tell-k/vim-autopep8‘
Plugin ‘scrooloose/nerdcommenter‘
Plugin ‘Tagbar‘
Plugin ‘Lokaltog/powerline‘, {‘rtp‘: ‘powerline/bindings/vim/‘}
call vundle#end()
filetype plugin indent on

"按F5運行python"
map <F5> :Autopep8<CR> :w<CR> :call RunPython()<CR>
function RunPython()
  let mp = &makeprg
  let ef = &errorformat
  let exeFile = expand("%:t")
  setlocal makeprg=python\ -u
  set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m
  silent make %
  copen
  let &makeprg = mp
  let &errorformat = ef
endfunction

" 設置tagbar的窗口寬度
let g:tagbar_width=30
" 映射Tagbar的快捷鍵,按F6自動打開
map <F6> :TagbarToggle<CR>

"按F9運行python調試"
map <F9> :Autopep8<CR> :w<CR> :call RunPythonDebug()<CR>
function RunPythonDebug()
  let mp = &makeprg
  let ef = &errorformat
  let exeFile = expand("%:t")
  setlocal makeprg=python\ -m\ pdb
  set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m
  silent make %
  copen
  let &makeprg = mp
  let &errorformat = ef
endfunction

"YouCompleteMe
"默認配置文件路徑"
let g:ycm_global_ycm_extra_conf = ‘~/.vim/bundle/YouCompleteMe/third_party/ycmd/examples/.ycm_extra_conf.py‘
"打開vim時不再詢問是否加載ycm_extra_conf.py配置"
let g:ycm_confirm_extra_conf=0
set completeopt=longest,menu
"python解釋器路徑"
let g:ycm_path_to_python_interpreter=‘/usr/bin/python‘
"是否開啟語義補全"
let g:ycm_seed_identifiers_with_syntax=1
"是否在註釋中也開啟補全"
let g:ycm_complete_in_comments=1
let g:ycm_collect_identifiers_from_comments_and_strings = 0
"開始補全的字符數"
let g:ycm_min_num_of_chars_for_completion=2
"補全後自動關機預覽窗口"
let g:ycm_autoclose_preview_window_after_completion=1
" 禁止緩存匹配項,每次都重新生成匹配項"
let g:ycm_cache_omnifunc=0
"字符串中也開啟補全"
let g:ycm_complete_in_strings = 1
"離開插入模式後自動關閉預覽窗口"
autocmd InsertLeave * if pumvisible() == 0|pclose|endif
"回車即選中當前項"
"inoremap <expr> <CR>       pumvisible() ? ‘<C-y>‘ : ‘\<CR>‘     
"上下左右鍵行為"
inoremap <expr> <Down>     pumvisible() ? ‘\<C-n>‘ : ‘\<Down>‘
inoremap <expr> <Up>       pumvisible() ? ‘\<C-p>‘ : ‘\<Up>‘
inoremap <expr> <PageDown> pumvisible() ? ‘\<PageDown>\<C-p>\<C-n>‘ : ‘\<PageDown>‘
inoremap <expr> <PageUp>   pumvisible() ? ‘\<PageUp>\<C-p>\<C-n>‘ : ‘\<PageUp>‘
"YouCompleteMe clang settings
let g:clang_format#style_options = {
             \ "AccessModifierOffset" : -4,
             \ "AllowShortIfStatementsOnASingleLine" : "true",
             \ "AlwaysBreakTemplateDeclarations" : "true",
             \ "Standard" : "C++11"}
let g:clang_format#auto_format=1

"Nerd tree
"F2開啟和關閉樹"
map <F2> :NERDTreeToggle<CR>
let NERDTreeChDirMode=1
"顯示書簽"
let NERDTreeShowBookmarks=1
"設置忽略文件類型"
let NERDTreeIgnore=[‘\~$‘, ‘\.pyc$‘, ‘\.swp$‘]
"窗口大小"
let NERDTreeWinSize=25

"縮進指示線"
let g:indentLine_char=‘┆‘
let g:indentLine_enabled = 1
"autopep8設置"
let g:autopep8_disable_show_diff=1
autocmd Filetype python noremap <buffer> <F8> :call Autopep8()<CR>

map <F4> <leader>ci <CR>

安裝插件

打開任意一vim編輯窗口,使用命令模式鍵入以下命令即可實現對應功能

:PluginList - 列出所有已配置的插件
:PluginInstall - 安裝插件,追加 `!` 用以更新或使用
:PluginUpdate:PluginSearch foo - 搜索 foo ; 追加 `!` 清除本地緩存
:PluginClean - 清除未使用插件,需要確認; 追加 `!` 自動批準移除未使用插件
:h vundle 獲取更多細節和wiki以及FAQ

或者通過以下快速安裝:

 vim +PluginInstall +qall

附加

增加clang:添加C語言家族語法補全功能

sudo yum install cmake -y
cd ~/.vim/plugin/YouCompleteMe  
./install.py --clang-completer

效果如圖:
技術分享圖片

centos7使用vim打造強大的python IDE