Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. " .vimrc.before.local
  2.  
  3. let g:spf13_bundle_groups=['general', 'writing', 'snipmate', 'programming', 'python', 'javascript', 'html', 'misc',]
  4.  
  5.  
  6. " .vimrc.bundles.local
  7.  
  8. UnBundle 'nathanaelkane/vim-indent-guides'
  9. Bundle 'Yggdroot/indentLine'
  10.  
  11. UnBundle 'tpope/vim-markdown'
  12. Bundle 'plasticboy/vim-markdown', {'name': 'plastic-md'}
  13.  
  14. Bundle 'vim-scripts/vim-auto-save'
  15.  
  16.  
  17. " .vimrc.local
  18.  
  19. let g:NERDTreeDirArrowExpandable = '>'
  20. let g:NERDTreeDirArrowCollapsible = 'v'
  21. " let g:solarized_termcolors=16
  22. " colorscheme solarized
  23. set background=dark
  24. colorscheme PaperColor
  25. let g:airline_theme='badwolf'
  26. set noexpandtab
  27. set showbreak=↪\
  28. autocmd VimEnter * set nospell
  29. let g:tex_conceal = ""
  30. let g:vim_markdown_math = 1
  31. let g:pymode_python = 'python3'
  32. let g:pymode_options_max_line_length=180
  33. let g:pymode_lint_checkers = ['pep8', 'pyflakes']
  34. let g:pymode_lint_ignore = "D213,F405,F403,E126,W605"
  35.  
  36. " 用 gvim/macvim 才要下面几行
  37.  
  38. set guifont=NovaMono\ for\ Powerline:h22
  39. set lines=999 columns=9999
  40. set fu
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement