Advertisement
Guest User

Untitled

a guest
Jun 8th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.19 KB | None | 0 0
  1. let g:project_use_nerdtree = 1
  2. set rtp+=~/.vim/bundle/vim-project/
  3. call project#rc("~/Code")
  4.  
  5. Project  'scratch'
  6.  
  7. Project  'dotfiles'
  8. File     'dotfiles/vimrc'                       , 'vimrc'
  9. File     'dotfiles/gvimrc'                      , 'gvimrc'
  10. File     'dotfiles/zshrc'                       , 'zshrc'
  11.  
  12. Project  'gollum'
  13. File     'gollum/Todo.md'                       , 'todo'
  14. Callback 'gollum'                               , 'RemoveTextWidth'
  15.  
  16. function! RemoveTextWidth(...) abort
  17.   setlocal textwidth=0
  18. endfunction
  19.  
  20. Project  'octopress'
  21. Project  'gsource'
  22. Project  'markup'
  23. Project  'glib'
  24. Project  'reloadlive'
  25. Project  'flashcards'
  26. Project  'leitner'
  27. Callback 'leitner'                              , ['AddSpecToPath', 'RemoveTextWidth']
  28.  
  29. function! AddSpecToPath(tile) abort
  30.   setlocal path+=spec
  31. endfunction
  32.  
  33. Project  '~/.vim/bundle/vim-fenced-code-blocks' , 'fenced'
  34. Project  '~/.vim/bundle/vim-project'            , 'project'
  35. Project  '~/.vim/bundle/vim-bookmarks'          , 'bookmarks'
  36. Project  '~/.vim/bundle/ctrlp.vim'              , 'ctrlp'
  37. Project  '~/.vim/bundle/ctrlp-z'                , 'ctrlp-z'
  38. Project  '~/.vim/bundle/vim-eval'               , 'eval'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement