commit 3509ad61ae4c326340c04497e8d98be099a3d765
parent 19d175dea8f960109e326cb759084929d0eb482d
Author: pyratebeard <root@pyratebeard.net>
Date: Wed, 14 Aug 2019 22:19:25 +0100
remove nerdtree and config keybinding for netrw. add in liststyle and banner settings
Diffstat:
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/vim/.vimrc b/vim/.vimrc
@@ -70,8 +70,8 @@ nnoremap <silent> <leader>p :silent :r !xsel -o -b<CR>
nnoremap <C-n> :tabn<CR>
nnoremap <C-p> :tabp<CR>
-" NERDTreeToggle
-nnoremap <C-j> :NERDTreeToggle<CR>
+" netrw
+nnoremap <C-j> :Ex<CR>
" noh
nnoremap <C-c> :noh<CR>
@@ -129,6 +129,10 @@ set foldminlines=99
" highlight line
set cursorline
+" netrw config
+let g:netrw_liststyle = 3
+let g:netrw_banner = 0
+
" PLUGINS
filetype plugin indent on
" to install from the shell run:
@@ -140,15 +144,11 @@ if 1 " boolean for plugin loading
Plugin 'gmarik/Vundle.vim'
Plugin 'airblade/vim-gitgutter'
Plugin 'tpope/vim-fugitive'
- Plugin 'scrooloose/nerdtree'
Plugin 'vimwiki/vimwiki'
Plugin 'itchyny/lightline.vim'
Plugin 'rking/ag.vim'
call vundle#end()
- " nerdtree - workaround for https://github.com/scrooloose/nerdtree/issues/643
- let g:NERDTreeDirArrows = 1
-
" git-gutter http://git.io/vimgitgutter
let g:gitgutter_realtime = 1
let g:gitgutter_eager = 1