Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. source $HOME/.vim-setting/basic.vim
  2. source $HOME/.vim-setting/keyremap.vim
  3. source $HOME/.vim-setting/filetype.vim
  4. source $HOME/.vim-setting/reload.vim
  5.  
  6. "NeoBundle Scripts-----------------------------
  7. if has('vim_starting')
  8. if &compatible
  9. set nocompatible " Be iMproved
  10. endif
  11.  
  12. " Required:
  13. set runtimepath+=/home/yhoshino11/.vim/bundle/neobundle.vim/
  14. endif
  15.  
  16. " Required:
  17. call neobundle#begin(expand('/home/yhoshino11/.vim/bundle'))
  18.  
  19. " Let NeoBundle manage NeoBundle
  20. " Required:
  21. NeoBundleFetch 'Shougo/neobundle.vim'
  22.  
  23. " Add or remove your Bundles here:
  24. NeoBundle 'Shougo/neosnippet.vim'
  25. NeoBundle 'Shougo/neosnippet-snippets'
  26. NeoBundle 'tpope/vim-fugitive'
  27. NeoBundle 'ctrlpvim/ctrlp.vim'
  28. NeoBundle 'flazz/vim-colorschemes'
  29.  
  30. " Plugins
  31. " Gist
  32. NeoBundle 'mattn/gist-vim', {'depends': 'mattn/webapi-vim'}
  33. source $HOME/.vim-setting/plugins/gist.vim
  34.  
  35. " NERDTree
  36. NeoBundle 'scrooloose/nerdtree'
  37. source $HOME/.vim-setting/plugins/nerdtree.vim
  38. " Markdown
  39. NeoBundle 'suan/vim-instant-markdown'
  40.  
  41. " Gundo
  42. NeoBundle 'sjl/gundo.vim'
  43. source $HOME/.vim-setting/plugins/gundo.vim
  44.  
  45. " You can specify revision/branch/tag.
  46. NeoBundle 'Shougo/vimshell', { 'rev' : '3787e5' }
  47.  
  48. " Required:
  49. call neobundle#end()
  50.  
  51. " Required:
  52. filetype plugin indent on
  53.  
  54. " If there are uninstalled bundles found on startup,
  55. " this will conveniently prompt you to install them.
  56. NeoBundleCheck
  57. "End NeoBundle Scripts-------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement