Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. set nocompatible " be iMproved, required
  2. filetype off " required
  3.  
  4. " set the runtime path to include Vundle and initialize
  5. set rtp+=~/.vim/bundle/Vundle.vim
  6. call vundle#begin()
  7. " alternatively, pass a path where Vundle should install plugins
  8. "call vundle#begin('~/some/path/here')
  9.  
  10. " let Vundle manage Vundle, required
  11. Plugin 'gmarik/Vundle.vim'
  12. Plugin 'scrooloose/syntastic'
  13. Plugin 'tpope/vim-fugitive'
  14. Plugin 'zenburn'
  15.  
  16. " All of your Plugins must be added before the following line
  17. call vundle#end() " required
  18. filetype plugin indent on " required
  19. " To ignore plugin indent changes, instead use:
  20. "filetype plugin on
  21. "
  22. " Brief help
  23. " :PluginList - list configured plugins
  24. " :PluginInstall(!) - install (update) plugins
  25. " :PluginSearch(!) foo - search (or refresh cache first) for foo
  26. " :PluginClean(!) - confirm (or auto-approve) removal of unused plugins
  27. "
  28. " see :h vundle for more details or wiki for FAQ
  29. " Put your non-Plugin stuff after this line
  30.  
  31. " Powerline for vim
  32. python from powerline.vim import setup as powerline_setup
  33. python powerline_setup()
  34. python del powerline_setup
  35.  
  36. set encoding=utf-8
  37. set laststatus=2
  38. set nu
  39. set autoindent
  40. set smartindent
  41. set showtabline=2
  42. syntax on
  43. set expandtab
  44. set t_Co=256
  45. colorscheme zenburn
  46. let g:zenburn_high_Contrast=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement