switch to different version of nerdtree

also add devicons for nerdtree
This commit is contained in:
Jidbo 2021-09-05 21:42:20 +02:00
parent 66653b815f
commit 906acb2658
Signed by untrusted user: jidbo
GPG key ID: 54C320BF0E44C5CA
2 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@
" NERD TREE SETUP
" =========================
let NERDTreeIgnore=['\.pyc$', '\~$'] "ignore files in NERDTree
let NERDTreeIgnore=['\.pyc$', '\~$', '__pycache__'] "ignore files in NERDTree
" AIRLINE SETUP
" =========================

View file

@ -6,9 +6,6 @@ call plug#begin('~/.config/nvim/bundle')
" Editor config
Plug 'editorconfig/editorconfig-vim'
" comment plugin
Plug 'tpope/vim-commentary'
" brackets management
Plug 'tpope/vim-surround'
@ -31,7 +28,10 @@ Plug 'junegunn/goyo.vim'
" ===================
" nerd-tree
Plug 'scrooloose/nerdtree'
Plug 'preservim/nerdtree'
" Icons
Plug 'ryanoasis/vim-devicons'
" fzf plugin
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }