Update .vimrc
This commit is contained in:
parent
25e3e1c4ad
commit
6e72316437
12
.vimrc
12
.vimrc
|
@ -1,18 +1,21 @@
|
||||||
set nowrap
|
|
||||||
|
|
||||||
set nocompatible
|
set nocompatible
|
||||||
set linebreak
|
set linebreak
|
||||||
syntax on
|
syntax on
|
||||||
" set number
|
set number
|
||||||
map <silent> <up> gk
|
map <silent> <up> gk
|
||||||
map <silent> <down> gj
|
map <silent> <down> gj
|
||||||
set spelllang=fr
|
set spelllang=fr
|
||||||
|
|
||||||
|
colorscheme habamax
|
||||||
set background=dark
|
set background=dark
|
||||||
|
|
||||||
|
set wrap
|
||||||
|
|
||||||
" search
|
" search
|
||||||
set incsearch "incremental search
|
set incsearch "incremental search
|
||||||
set hlsearch "highlight search
|
set hlsearch "highlight search
|
||||||
set ignorecase
|
set ignorecase
|
||||||
|
set smartcase
|
||||||
set autochdir
|
set autochdir
|
||||||
|
|
||||||
" folding
|
" folding
|
||||||
|
@ -43,3 +46,6 @@ nnoremap <C-p> :find<Space>*
|
||||||
|
|
||||||
" ctrl-j for terminal
|
" ctrl-j for terminal
|
||||||
nnoremap <C-j> :below terminal<CR>
|
nnoremap <C-j> :below terminal<CR>
|
||||||
|
|
||||||
|
" explorer
|
||||||
|
nnoremap <C-k><C-b> :30Vex<CR>
|
||||||
|
|
Loading…
Reference in New Issue