Advertisement
Guest User

rezvykh vimrc

a guest
May 7th, 2019
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.21 KB | None | 0 0
  1. " Specify a directory for plugins
  2. " - For Neovim: ~/.local/share/nvim/plugged
  3. " - Avoid using standard Vim directory names like 'plugin'
  4. call plug#begin('~/.vim/plugged')
  5.  
  6. " Make sure you use single quotes
  7.  
  8. " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
  9. Plug 'junegunn/vim-easy-align'
  10.  
  11. " Any valid git URL is allowed
  12. Plug 'https://github.com/junegunn/vim-github-dashboard.git'
  13.  
  14. " Multiple Plug commands can be written in a single line using | separators
  15. " Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'
  16.  
  17. " On-demand loading
  18. Plug 'scrooloose/nerdtree', { 'on':  'NERDTreeToggle' }
  19. Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
  20.  
  21. " Using a non-master branch
  22. Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' }
  23.  
  24. " Using a tagged release; wildcard allowed (requires git 1.9.2 or above)
  25. Plug 'fatih/vim-go', { 'tag': '*' }
  26.  
  27. " Plugin options
  28. Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' }
  29.  
  30. " Plugin outside ~/.vim/plugged with post-update hook
  31. Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
  32.  
  33. " Unmanaged plugin (manually installed and updated)
  34. Plug '~/my-prototype-plugin'
  35.  
  36. Plug 'jalvesaq/Nvim-R'
  37.  
  38.  
  39. " Initialize plugin system
  40. call plug#end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement