Replaced nerdtree with inbuilt file explorer
This commit is contained in:
parent
d0d027bb86
commit
dbace071df
2 changed files with 2 additions and 3 deletions
|
|
@ -15,7 +15,6 @@ Plugin 'itchyny/lightline.vim'
|
||||||
"Plug 'morhetz/gruvbox'
|
"Plug 'morhetz/gruvbox'
|
||||||
" Functional
|
" Functional
|
||||||
Plugin 'jiangmiao/auto-pairs'
|
Plugin 'jiangmiao/auto-pairs'
|
||||||
Plugin 'scrooloose/nerdtree'
|
|
||||||
Plugin 'tpope/vim-surround'
|
Plugin 'tpope/vim-surround'
|
||||||
Plugin 'dhruvasagar/vim-dotoo'
|
Plugin 'dhruvasagar/vim-dotoo'
|
||||||
" Language C++/glsl
|
" Language C++/glsl
|
||||||
|
|
@ -41,8 +40,6 @@ filetype plugin indent on " required
|
||||||
" see :h vundle for more details or wiki for FAQ
|
" see :h vundle for more details or wiki for FAQ
|
||||||
" Put your non-Plugin stuff after this line
|
" Put your non-Plugin stuff after this line
|
||||||
|
|
||||||
" NerdTree
|
|
||||||
nnoremap <C-o> :NERDTreeToggle<CR>
|
|
||||||
" Tab completion
|
" Tab completion
|
||||||
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
|
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
|
||||||
inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
|
inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
|
||||||
|
|
|
||||||
2
vimrc
2
vimrc
|
|
@ -90,5 +90,7 @@ hi CursorLine ctermbg=8 guibg=#404040
|
||||||
hi Cursor ctermbg=15
|
hi Cursor ctermbg=15
|
||||||
" set spellcheck
|
" set spellcheck
|
||||||
set spell
|
set spell
|
||||||
|
" Remap Lex
|
||||||
|
nnoremap <C-o> :Lex<CR>
|
||||||
" Load Plugins
|
" Load Plugins
|
||||||
so ~/.vim/plugins.vim
|
so ~/.vim/plugins.vim
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue