mirror of
https://github.com/GRFreire/dotfiles.git
synced 2026-01-10 04:19:38 +00:00
vim: add nerdtree
This commit is contained in:
parent
704a1ddcbe
commit
96d0d29c2e
@ -24,6 +24,10 @@ Plug 'romgrk/doom-one.vim'
|
|||||||
Plug 'sheerun/vim-polyglot'
|
Plug 'sheerun/vim-polyglot'
|
||||||
Plug 'vim-airline/vim-airline'
|
Plug 'vim-airline/vim-airline'
|
||||||
Plug 'vim-airline/vim-airline-themes'
|
Plug 'vim-airline/vim-airline-themes'
|
||||||
|
Plug 'preservim/nerdtree'
|
||||||
|
Plug 'Xuyuanp/nerdtree-git-plugin'
|
||||||
|
Plug 'ryanoasis/vim-devicons'
|
||||||
|
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
|
||||||
|
|
||||||
set encoding=UTF-8
|
set encoding=UTF-8
|
||||||
|
|
||||||
@ -31,9 +35,15 @@ call plug#end()
|
|||||||
|
|
||||||
set background=dark
|
set background=dark
|
||||||
:colorscheme doom-one
|
:colorscheme doom-one
|
||||||
|
|
||||||
let g:airline_theme='deus'
|
let g:airline_theme='deus'
|
||||||
let g:airline_symbols_ascii = 1
|
let g:airline_symbols_ascii = 1
|
||||||
|
|
||||||
|
autocmd BufEnter * lcd %:p:h
|
||||||
|
nnoremap <C-b> :NERDTreeToggle<CR>
|
||||||
|
|
||||||
|
let g:NERDTreeGitStatusUseNerdFonts = 1
|
||||||
|
|
||||||
" --- Just Some Notes ---
|
" --- Just Some Notes ---
|
||||||
" :PlugClean :PlugInstall
|
" :PlugClean :PlugInstall
|
||||||
" -----------------------
|
" -----------------------
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user