nvim with vim-abolish
This commit is contained in:
parent
c08a0d5ec7
commit
efcbf14783
17 changed files with 14 additions and 6725 deletions
10
.vimrc
10
.vimrc
|
|
@ -79,7 +79,6 @@ autocmd InsertLeave * if pumvisible() == 0|pclose|endif
|
|||
set rtp+=~/.vim/bundle/neobundle.vim/
|
||||
call neobundle#begin(expand('~/.vim/bundle'))
|
||||
NeoBundle 'Shougo/neobundle.vim'
|
||||
NeoBundle 'conque_2.3'
|
||||
NeoBundle 'eclim'
|
||||
NeoBundle 'vim-scripts/DrawIt'
|
||||
NeoBundle 'tpope/vim-speeddating'
|
||||
|
|
@ -118,6 +117,7 @@ NeoBundle 'JuliaLang/julia-vim'
|
|||
NeoBundle 'tpope/vim-surround'
|
||||
NeoBundle 'farseer90718/vim-taskwarrior'
|
||||
NeoBundle 'fatih/vim-go'
|
||||
NeoBundle 'tpope/vim-abolish'
|
||||
"https://git.wincent.com/command-t.git
|
||||
call neobundle#end()
|
||||
filetype plugin indent on " required
|
||||
|
|
@ -516,6 +516,14 @@ inoremap <C-k> <C-w>k
|
|||
inoremap <C-l> <C-w>l
|
||||
inoremap <C-h> <C-w>h
|
||||
|
||||
if has('nvim')
|
||||
tnoremap <Esc> <C-\><C-n>
|
||||
tnoremap <C-j> <C-\><C-n><C-w>j
|
||||
tnoremap <C-k> <C-\><C-n><C-w>k
|
||||
tnoremap <C-l> <C-\><C-n><C-w>l
|
||||
tnoremap <C-h> <C-\><C-n><C-w>h
|
||||
endif
|
||||
|
||||
" Better fold mappings
|
||||
nnoremap <silent> <Space> @=(foldlevel('.')?'za':'l')<CR>
|
||||
vnoremap <Space> zf
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue