dwyl / learn-vim

💻 Learn how to use the Vim (or Helix!) text editor to write/edit code *much* faster and get more done in less time! ⏳❤️ ✅
9 stars 0 forks source link

NERDTree #11

Closed nelsonic closed 5 years ago

nelsonic commented 5 years ago

https://github.com/scrooloose/nerdtree image

nelsonic commented 5 years ago

https://vi.stackexchange.com/questions/5335/how-to-install-nerdtree-with-vundle

Then: https://medium.com/usevim/nerd-tree-guide-bb22c803dcd2

nelsonic commented 5 years ago

OK, I feel I can work with this. image

my .vimrc file is:

set nocompatible              " be iMproved, required by Vundle
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

" https://github.com/elixir-editors/vim-elixir
Plugin 'slashmili/alchemist.vim'
Plugin 'scrooloose/nerdtree'

colorscheme desert " select built-in color scheme
set number         " display line numbers

" All of Plugins must be added before the following line
call vundle#end()            " required

nmap <F6> :NERDTreeToggle<CR> " Keyboard shortcut https://vi.stackexchange.com/a/9968