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

溫馨提示×

溫馨提示×

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

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

怎么用VundleVim定制vim開發環境

發布時間:2021-08-20 22:10:48 來源:億速云 閱讀:152 作者:chen 欄目:移動開發

本篇內容介紹了“怎么用VundleVim定制vim開發環境”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

1.建議vim版本在7.3以上,查看vim版本

點擊(此處)折疊或打開

  1. (py3env) [root@mysqltest-213-2 pytonstudy]# vim --version

  2. VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Dec 21 2016 17:10:41)

  3. Included patches: 1-207, 209-629

  4. Modified by

  5. Compiled by





下載

點擊(此處)折疊或打開

  1. https://github.com/VundleVim/Vundle.vim

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



vim ~/.vimrc 添加如下內容

點擊(此處)折疊或打開

  1. " show row number

  2. set nu

  3. " " color theme

  4. colorscheme desert

  5. " " 設置encoding,防止亂碼

  6. set fileencodings=utf-8,gb2312,gb18030,gbk,ucs-bom,cp936,latin1

  7. " """"""""""""""""""""""""""""""

  8. " " Vundle Setting "

  9. " """"""""""""""""""""""""""""""

  10. set nocompatible " be iMproved, required

  11. filetype on                  " required

  12. " " set the runtime path to include Vundle and initialize

  13. set rtp+=~/.vim/bundle/Vundle.vim

  14. call vundle#begin()

  15. " " let Vundle manage Vundle, required

  16. Plugin 'VundleVim/Vundle.vim'

  17. " "

  18. " " 插件管理核心庫

  19. Bundle 'gmarik/vundle'

  20. " " 文件管理器

  21. Plugin 'scrooloose/nerdtree'

  22. map <C-n> :NERDTreeToggle<CR>

  23. " " ctrlp搜索插件

  24. Bundle 'ctrlpvim/ctrlp.vim'

  25. let g:ctrlp_map = '<c-p>'

  26. let g:ctrlp_cmd = 'CtrlP'

  27. " " 加強狀態欄

  28. Plugin 'bling/vim-airline'

  29. " "代碼補全

  30. Bundle 'Shougo/neocomplcache'

  31. let g:neocomplcache_enable_at_startup = 1

  32. " " Use smartcase.

  33. let g:neocomplcache_enable_smart_case = 1

  34. " " Set minimum syntax keyword length.

  35. let g:neocomplcache_min_syntax_length = 3

  36. let g:neocomplcache_lock_buffer_name_pattern = '\*ku\*'

  37. set completeopt-=preview

  38. " " EasyGrep

  39. Plugin 'dkprice/vim-easygrep'

  40. " " 自動格式化

  41. Plugin 'Chiel92/vim-autoformat'

  42. noremap <F3> :Autoformat<CR>

  43. let g:autoformat_autoindent = 1

  44. let g:autoformat_retab = 1

  45. let g:autoformat_remove_trailing_spaces = 1

  46. " " 自動補全括號,引號

  47. Plugin 'Raimondi/delimitMate'

  48. let g:delimitMate_expand_space = 1

  49. let g:delimitMate_expand_cr = 2

  50. let g:delimitMate_expand_space = 1

  51. call vundle#end() " required

  52. filetype plugin indent on    " required

  53. " " size of a hard tabstop

  54. set tabstop=4

  55. " " size of an "indent"

  56. set shiftwidth=4

按esc 退出到vim命令模式輸入

點擊(此處)折疊或打開

  1. :BundleInstall

點擊(此處)折疊或打開

  1. " Installing plugins to /root/.vim/bundle                                        |  1

  2. . Plugin 'VundleVim/Vundle.vim'                                                    |~

  3. . Plugin 'gmarik/vundle'                                                           |~

  4. . Plugin 'scrooloose/nerdtree'                                                     |~

  5. . Plugin 'ctrlpvim/ctrlp.vim'                                                      |~

  6. . Plugin 'bling/vim-airline'                                                       |~

  7. . Plugin 'Shougo/neocomplcache'                                                    |~

  8. . Plugin 'dkprice/vim-easygrep'                                                    |~

  9. . Plugin 'Chiel92/vim-autoformat'                                                  |~

  10. . Plugin 'Raimondi/delimitMate'                                                    |~

  11. * Helptags                                                                         |~

  12. |~

  13. ~                                                                                |~

  14. ~                                                                                |~

  15. ~                                                                                |~

  16. ~                                                                                |~

  17. ~                                                                                |~

  18. ~                                                                                |~

  19. ~                                                                                |~

  20. ~                                                                                |~

  21. ~                                                                                |~

  22. ~                                                                                |~

  23. ~                                                                                |~

  24. ~                                                                                |~

  25. ~                                                                                |~

  26. Preview  [Vundle] Installer                         vun…  100% ?   12/12 ㏑ :  1   [No Name]                                                   100% ?    0/1 ㏑ :  1

  27. Done!


安裝完成
代碼事例

點擊(此處)折疊或打開

  1. (py3env) [root@mysqltest-213-2 pytonstudy]# vim test_su.py


  2.   1 a = 1

  3.   2 a2 = 3

  4.   3 a += a2

  5.   4 print("a2=%d"%(a2))

  6.   5 print("a=%d"%(a))

“怎么用VundleVim定制vim開發環境”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

佳木斯市| 中江县| 望城县| 额尔古纳市| 黑水县| 德钦县| 河北区| 喜德县| 大悟县| 柳河县| 清水县| 晋江市| 萨迦县| 寻乌县| 化隆| 庆元县| 奎屯市| 儋州市| 通河县| 那坡县| 娄烦县| 三明市| 玉溪市| 巧家县| 八宿县| 镇巴县| 理塘县| 永胜县| 巫山县| 丰原市| 荔波县| 平江县| 娄底市| 安吉县| 巴林右旗| 寿阳县| 吴桥县| 禄丰县| 临武县| 星子县| 西安市|