您好,登錄后才能下訂單哦!
本篇內容介紹了“怎么用VundleVim定制vim開發環境”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
1.建議vim版本在7.3以上,查看vim版本
點擊(此處)折疊或打開
(py3env) [root@mysqltest-213-2 pytonstudy]# vim --version
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Dec 21 2016 17:10:41)
Included patches: 1-207, 209-629
Modified by
Compiled by
下載
點擊(此處)折疊或打開
https://github.com/VundleVim/Vundle.vim
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim ~/.vimrc 添加如下內容
點擊(此處)折疊或打開
" show row number
set nu
" " color theme
colorscheme desert
" " 設置encoding,防止亂碼
set fileencodings=utf-8,gb2312,gb18030,gbk,ucs-bom,cp936,latin1
" """"""""""""""""""""""""""""""
" " Vundle Setting "
" """"""""""""""""""""""""""""""
set nocompatible " be iMproved, required
filetype on " required
" " set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" " let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" "
" " 插件管理核心庫
Bundle 'gmarik/vundle'
" " 文件管理器
Plugin 'scrooloose/nerdtree'
map <C-n> :NERDTreeToggle<CR>
" " ctrlp搜索插件
Bundle 'ctrlpvim/ctrlp.vim'
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
" " 加強狀態欄
Plugin 'bling/vim-airline'
" "代碼補全
Bundle 'Shougo/neocomplcache'
let g:neocomplcache_enable_at_startup = 1
" " Use smartcase.
let g:neocomplcache_enable_smart_case = 1
" " Set minimum syntax keyword length.
let g:neocomplcache_min_syntax_length = 3
let g:neocomplcache_lock_buffer_name_pattern = '\*ku\*'
set completeopt-=preview
" " EasyGrep
Plugin 'dkprice/vim-easygrep'
" " 自動格式化
Plugin 'Chiel92/vim-autoformat'
noremap <F3> :Autoformat<CR>
let g:autoformat_autoindent = 1
let g:autoformat_retab = 1
let g:autoformat_remove_trailing_spaces = 1
" " 自動補全括號,引號
Plugin 'Raimondi/delimitMate'
let g:delimitMate_expand_space = 1
let g:delimitMate_expand_cr = 2
let g:delimitMate_expand_space = 1
call vundle#end() " required
filetype plugin indent on " required
" " size of a hard tabstop
set tabstop=4
" " size of an "indent"
set shiftwidth=4
按esc 退出到vim命令模式輸入
點擊(此處)折疊或打開
:BundleInstall
點擊(此處)折疊或打開
" Installing plugins to /root/.vim/bundle | 1
. Plugin 'VundleVim/Vundle.vim' |~
. Plugin 'gmarik/vundle' |~
. Plugin 'scrooloose/nerdtree' |~
. Plugin 'ctrlpvim/ctrlp.vim' |~
. Plugin 'bling/vim-airline' |~
. Plugin 'Shougo/neocomplcache' |~
. Plugin 'dkprice/vim-easygrep' |~
. Plugin 'Chiel92/vim-autoformat' |~
. Plugin 'Raimondi/delimitMate' |~
* Helptags |~
|~
~ |~
~ |~
~ |~
~ |~
~ |~
~ |~
~ |~
~ |~
~ |~
~ |~
~ |~
~ |~
~ |~
Preview [Vundle] Installer vun… 100% ? 12/12 ㏑ : 1 [No Name] 100% ? 0/1 ㏑ : 1
Done!
安裝完成
代碼事例
點擊(此處)折疊或打開
(py3env) [root@mysqltest-213-2 pytonstudy]# vim test_su.py
1 a = 1
2 a2 = 3
3 a += a2
4 print("a2=%d"%(a2))
5 print("a=%d"%(a))
“怎么用VundleVim定制vim開發環境”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。