[关闭]
@songying 2018-08-20T21:48:46.000000Z 字数 1334 阅读 1076

我的.vimrc文件配置

vim


ubuntu16.04

  1. set nocompatible " be iMproved, required
  2. filetype off " required
  3. set rtp+=~/.vim/bundle/Vundle.vim
  4. call vundle#begin()
  5. Plugin 'VundleVim/Vundle.vim'
  6. """""""""""""""""""plugin""""""""""""""""""""""""""""""""""
  7. Plugin 'scrooloose/nerdtree'
  8. Plugin 'Lokaltog/powerline'
  9. Plugin 'scrooloose/syntastic'
  10. Plugin 'nvie/vim-flake8'
  11. Bundle 'ervandew/supertab
  12. Plugin 'jiangmiao/auto-pairs'
  13. Plugin 'tell-k/vim-autopep8'
  14. Plugin 'scrooloose/nerdcommenter'
  15. Plugin 'altercation/vim-colors-solarized'
  16. Plugin 'Yggdroot/indentLine'
  17. Plugin 'tpope/vim-fugitive'
  18. Plugin 'kien/ctrlp.vim'
  19. Plugin 'tmhedberg/SimpylFold'
  20. Plugin 'vim-scripts/indentpython.vim'
  21. Plugin 'tpope/vim-fugitive'
  22. "Plugin 'klen/python-mode'
  23. "Plugin 'Valloric/YouCompleteMe'
  24. """""""""""""""""""""Plugin Complete"""""""""""""""""""""""""""""
  25. call vundle#end() " required
  26. filetype plugin indent on " required
  27. """"""""""""""""""""""Settings""""""""""""""""""""""""""""
  28. set encoding=utf-8 " 设置编码
  29. set number " 显示行号
  30. syntax on " 语法高亮
  31. let python_highlight_all=1
  32. "let g:pymode_python = 'python3'
  33. map <F2> :NERDTreeToggle<CR>
  34. "窗口切换
  35. nnoremap <C-J> <C-W><C-J>
  36. nnoremap <C-K> <C-W><C-K>
  37. nnoremap <C-L> <C-W><C-L>
  38. nnoremap <C-H> <C-W><C-H>
  39. """"""""""""""""""""""""""""""""""""""""""""""""""""
  40. "此处添加其他配置
  41. """"""""""""""""""""""""""""""""""""""""""""""""""""
  42. set encoding=utf-8
  43. set number
  44. set relativenumber
  45. let g:pymode_python = 'python3'
  46. """"""""""""""""""""""""""""""""""""""""""""""""""""
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注