Switch to NERDTree

This commit is contained in:
~erin 2022-04-09 13:21:43 -04:00
parent a09da0a70a
commit 2fce9dfb71
No known key found for this signature in database
GPG Key ID: DA70E064A8C70F44
1 changed files with 6 additions and 2 deletions

8
.vimrc
View File

@ -35,7 +35,7 @@ set autoindent " keep indent of file or smth
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
nnoremap f <cmd>CHADopen<cr>
nnoremap f <cmd>NERDTreeToggle<cr>
nnoremap t <cmd>ToggleTerm<cr>
set lazyredraw
@ -108,7 +108,11 @@ Plug 'hrsh7th/vim-vsnip' " snippet engine
" Plug 'nvim-lua/lsp_extensions.nvim'
" File tree
Plug 'ms-jpq/chadtree', {'branch': 'chad', 'do': 'python3 -m chadtree deps'}
Plug 'preservim/nerdtree'
Plug 'Xuyuanp/nerdtree-git-plugin' " git status icons
"Plug 'ryanoasis/vim-devicons'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight' " syntax highlighting?
Plug 'ryanoasis/vim-devicons' " icons
" Optional dependencies
Plug 'nvim-lua/popup.nvim'