Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. set nocompatible            
  2. filetype off            
  3. set rtp+=~/.vim/bundle/Vundle.vim
  4. call vundle#begin()
  5.  
  6. Plugin 'VundleVim/Vundle.vim'
  7. Plugin 'tpope/vim-fugitive'
  8. Plugin 'git://git.wincent.com/command-t.git'
  9. Plugin 'file:///home/gmarik/path/to/plugin'
  10. Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
  11. Plugin 'ascenator/L9', {'name': 'newL9'}
  12. Plugin 'Valloric/YouCompleteMe'
  13. Plugin 'dracula/vim'
  14. Plugin 'flazz/vim-colorschemes'
  15.  
  16. call vundle#end()          
  17.  
  18.  
  19. filetype plugin indent on  
  20.  
  21. syntax on
  22. set number
  23. set showcmd
  24. set cursorline
  25. set wildmenu
  26. set showmatch
  27. color darkrobot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement