Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. " == Vundle configuration ==
  2. set nocompatible
  3. filetype off
  4.  
  5. set rtp+=~/.vim/bundle/Vundle.vim
  6.  
  7. call vundle#begin()
  8. Plugin 'VundleVim/Vundle.vim'
  9.  
  10. " -- Plugins --
  11. Plugin 'matchit.zip'
  12. Plugin 'tpope/vim-surround'
  13. Plugin 'aliva/vim-fish'
  14. Plugin 'sjl/badwolf'
  15. " -------------
  16. call vundle#end()
  17.  
  18. filetype plugin indent on
  19. " ==========================
  20.  
  21. " == Basic config ==
  22.  
  23. set tabstop=4 shiftwidth=4 expandtab
  24.  
  25. set number
  26.  
  27. syntax on
  28. colorscheme badwolf
  29.  
  30. highlight Normal ctermbg=none
  31. highlight LineNr ctermbg=none
  32. highlight NonText ctermbg=none
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement