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

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

怎么用VundleVim定制vim開發(fā)環(huán)境

本篇內(nèi)容介紹了“怎么用VundleVim定制vim開發(fā)環(huán)境”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

目前成都創(chuàng)新互聯(lián)已為上1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、成都網(wǎng)站托管、企業(yè)網(wǎng)站設(shè)計(jì)、黃龍網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

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

點(diǎn)擊(此處)折疊或打開

  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





下載

點(diǎn)擊(此處)折疊或打開

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

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



vim ~/.vimrc 添加如下內(nèi)容

點(diǎn)擊(此處)折疊或打開

  1. " show row number

  2. set nu

  3. " " color theme

  4. colorscheme desert

  5. " " 設(shè)置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 :NERDTreeToggle

  23. " " ctrlp搜索插件

  24. Bundle 'ctrlpvim/ctrlp.vim'

  25. let g:ctrlp_map = ''

  26. let g:ctrlp_cmd = 'CtrlP'

  27. " " 加強(qiáng)狀態(tài)欄

  28. Plugin 'bling/vim-airline'

  29. " "代碼補(bǔ)全

  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 :Autoformat

  43. let g:autoformat_autoindent = 1

  44. let g:autoformat_retab = 1

  45. let g:autoformat_remove_trailing_spaces = 1

  46. " " 自動補(bǔ)全括號,引號

  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命令模式輸入

點(diǎn)擊(此處)折疊或打開

  1. :BundleInstall

點(diǎn)擊(此處)折疊或打開

  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!


安裝完成
代碼事例

點(diǎn)擊(此處)折疊或打開

  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開發(fā)環(huán)境”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


當(dāng)前題目:怎么用VundleVim定制vim開發(fā)環(huán)境
網(wǎng)站地址:http://weahome.cn/article/jsccic.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部