Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. set nocompatible " be iMproved, required
  2. filetype off " required
  3. syntax on
  4.  
  5. " set the runtime path to include Vundle and initialize
  6. set rtp+=~/.vim/bundle/Vundle.vim
  7. call vundle#begin()
  8. " alternatively, pass a path where Vundle should install plugins
  9. "call vundle#begin('~/some/path/here')
  10.  
  11. " let Vundle manage Vundle, required
  12. Plugin 'VundleVim/Vundle.vim'
  13. Plugin 'posva/vim-vue'
  14.  
  15. " All of your Plugins must be added before the following line
  16. call vundle#end() " required
  17. filetype plugin indent on " required
  18. " To ignore plugin indent changes, instead use:
  19. "filetype plugin on
  20. "
  21. " Brief help
  22. " :PluginList - lists configured plugins
  23. " :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
  24. " :PluginSearch foo - searches for foo; append `!` to refresh local cache
  25. " :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
  26. "
  27. " see :h vundle for more details or wiki for FAQ
  28. " Put your non-Plugin stuff after this line
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement