Guest User

Untitled

a guest
Feb 15th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. " Plugs will be downloaded under the specified directory.
  2. call plug#begin('~/.vim/plugged')
  3.  
  4. " Utility
  5. Plug 'scrooloose/nerdtree'
  6.  
  7. call plug#end() " required
  8. filetype plugin indent on " required
  9. """" END vim-plug Configuration
  10.  
  11. """""""""""""""""""""""""""""""""""""
  12. " Configuration Section
  13. """""""""""""""""""""""""""""""""""""
  14.  
  15. set nocompatible
  16. syntax on
  17. set wrap
  18.  
  19. " Show linenumbers
  20. set number
  21. set ruler
  22.  
  23. " NerdTree Configuration
  24. let NERDTreeShowHidden=1
  25. let NERDTreeChDirMode=2
  26.  
  27. """""""""""""""""""""""""""""""""""""
  28. " Mappings configurationn
  29. """""""""""""""""""""""""""""""""""""
  30. noremap <C-n> :NERDTreeToggle<CR>
Add Comment
Please, Sign In to add comment