1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00
This commit is contained in:
W 2015-05-24 20:17:32 +00:00
commit e4d1623df8
4 changed files with 8 additions and 1 deletions

@ -0,0 +1 @@
Subproject commit b647ef54cd2d991d5221b97fb5dbb3c0477fdc64

@ -0,0 +1 @@
Subproject commit 226b49c7bec2426313b032a5ea4dcf21373e724e

View File

@ -197,6 +197,7 @@ set tw=500
set ai "Auto indent
set si "Smart indent
set wrap "Wrap lines
set nu
""""""""""""""""""""""""""""""
@ -228,6 +229,10 @@ map <C-k> <C-W>k
map <C-h> <C-W>h
map <C-l> <C-W>l
" Go to home and end using capitalized directions
noremap H ^
noremap L $
" Close the current buffer
map <leader>bd :Bclose<cr>

View File

@ -76,7 +76,7 @@ set grepprg=/bin/grep\ -nH
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Nerd Tree
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:NERDTreeWinPos = "right"
let g:NERDTreeWinPos = "left"
let NERDTreeIgnore = ['\.pyc$']
let g:NERDTreeWinSize=35
map <leader>nn :NERDTreeToggle<cr>