Guest User

Untitled

a guest
May 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. set nocompatible " be iMproved, required
  2. filetype off " required <<========== We can turn it on later
  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 'VundleVim/Vundle.vim'
  12.  
  13. " <============================================>
  14. " Specify the plugins you want to install here.
  15. " We'll come on that later
  16. " <============================================>
  17. " All of your Plugins must be added before the following line
  18. call vundle#end() " required
  19. filetype plugin indent on " required
  20. " To ignore plugin indent changes, instead use:
  21. "filetype plugin on
  22. "
  23. " Brief help
  24. " :PluginList - lists configured plugins
  25. " :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
  26. " :PluginSearch foo - searches for foo; append `!` to refresh local cache
  27. " :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
  28. "
  29. " see :h vundle for more details or wiki for FAQ
  30. " Put your non-Plugin stuff after this line
  31. " Track the engine.
  32. Plugin 'SirVer/ultisnips'
  33.  
  34. " Snippets are separated from the engine. Add this if you want them:
  35. Plugin 'honza/vim-snippets'
  36.  
  37. " Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe.
  38. let g:UltiSnipsExpandTrigger="<tab>"
  39. let g:UltiSnipsJumpForwardTrigger="<c-b>"
  40. let g:UltiSnipsJumpBackwardTrigger="<c-z>"
  41.  
  42. " If you want :UltiSnipsEdit to split your window.
  43. let g:UltiSnipsEditSplit="vertical"
  44. " Put the rest of your .vimrc file here
  45. set visualbell
  46. inoremap ii <Esc>
  47. inoremap <Esc> <Nop>
  48.  
  49. snippet test
  50. Will this text appear?$0
  51. endsnippet
Add Comment
Please, Sign In to add comment