vim and zsh
This commit is contained in:
parent
2883c46c5c
commit
f4dd8e0784
|
@ -132,6 +132,8 @@ endfunction
|
||||||
:command Restoresess call RestoreSess()
|
:command Restoresess call RestoreSess()
|
||||||
:command Removesess call RemoveSess()
|
:command Removesess call RemoveSess()
|
||||||
|
|
||||||
|
nnoremap <A-r> :Restoresess<cr>
|
||||||
|
|
||||||
" Save session on quitting Vim
|
" Save session on quitting Vim
|
||||||
autocmd VimLeave * call AutoSaveSess()
|
autocmd VimLeave * call AutoSaveSess()
|
||||||
|
|
||||||
|
@ -141,8 +143,8 @@ autocmd VimLeave * call AutoSaveSess()
|
||||||
"----------------------
|
"----------------------
|
||||||
|
|
||||||
" move between tabs
|
" move between tabs
|
||||||
nnoremap <A-Left> :tabprevious<CR>
|
nnoremap <A-h> :tabprevious<CR>
|
||||||
nnoremap <A-Right> :tabnext<CR>
|
nnoremap <A-l> :tabnext<CR>
|
||||||
|
|
||||||
|
|
||||||
map <C-n> :NERDTreeMirrorToggle<CR>
|
map <C-n> :NERDTreeMirrorToggle<CR>
|
||||||
|
@ -221,6 +223,10 @@ set expandtab
|
||||||
:command WQa wqa
|
:command WQa wqa
|
||||||
:command Wqa wqa
|
:command Wqa wqa
|
||||||
|
|
||||||
|
" Terminal stuff
|
||||||
|
:tnoremap <Esc> <C-\><C-n>
|
||||||
|
:set ma
|
||||||
|
|
||||||
let g:C_Mapfeader = ','
|
let g:C_Mapfeader = ','
|
||||||
nnoremap <cr> :noh<CR><CR>:<backspace>
|
nnoremap <cr> :noh<CR><CR>:<backspace>
|
||||||
|
|
||||||
|
@ -235,10 +241,6 @@ smap <expr><TAB> neosnippet#expandable_or_jumpable() ?
|
||||||
\ "\<Plug>(neosnippet_expand_or_jump)"
|
\ "\<Plug>(neosnippet_expand_or_jump)"
|
||||||
\: "\<TAB>"
|
\: "\<TAB>"
|
||||||
|
|
||||||
let g:deoplete#enable_smart_case = 1
|
|
||||||
imap <expr><CR> pumvisible() ? deoplete#close_popup() : "\<CR>"
|
|
||||||
:tnoremap <Esc> <C-\><C-n>
|
|
||||||
|
|
||||||
inoremap <silent><expr> <TAB>
|
inoremap <silent><expr> <TAB>
|
||||||
\ pumvisible() ? coc#_select_confirm() :
|
\ pumvisible() ? coc#_select_confirm() :
|
||||||
\ coc#expandableOrJumpable() ? "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>" :
|
\ coc#expandableOrJumpable() ? "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>" :
|
||||||
|
@ -253,6 +255,14 @@ endfunction
|
||||||
let g:coc_snippet_next = '<tab>'
|
let g:coc_snippet_next = '<tab>'
|
||||||
|
|
||||||
nnoremap <C-f> :Files<cr>
|
nnoremap <C-f> :Files<cr>
|
||||||
|
nnoremap <C-b> :Buffers<cr>
|
||||||
|
nnoremap ,s :split<cr>
|
||||||
|
nnoremap .s :vsplit<cr>
|
||||||
|
|
||||||
|
nnoremap <C-J> <C-W><C-J>
|
||||||
|
nnoremap <C-K> <C-W><C-K>
|
||||||
|
nnoremap <C-L> <C-W><C-L>
|
||||||
|
nnoremap <C-H> <C-W><C-H>
|
||||||
|
|
||||||
set completeopt=menu,noinsert
|
set completeopt=menu,noinsert
|
||||||
|
|
||||||
|
|
3
.zshrc
3
.zshrc
|
@ -70,7 +70,7 @@ alias nodeindex="node lib/index.js"
|
||||||
plugins=(
|
plugins=(
|
||||||
git
|
git
|
||||||
archlinux
|
archlinux
|
||||||
tig gitfast colorize command-not-found cp dirhistory sudo zsh-syntax-highlighting
|
tig gitfast colorize command-not-found cp dirhistory sudo
|
||||||
)
|
)
|
||||||
|
|
||||||
ZSH_COMPDUMP=/tmp/zcompdump-$USER
|
ZSH_COMPDUMP=/tmp/zcompdump-$USER
|
||||||
|
@ -213,6 +213,7 @@ alias polybarc="$EDITOR ~/.config/polybar/config"
|
||||||
alias i3c="$EDITOR ~/.config/i3/config"
|
alias i3c="$EDITOR ~/.config/i3/config"
|
||||||
alias termitec="$EDITOR ~/.config/termite/config"
|
alias termitec="$EDITOR ~/.config/termite/config"
|
||||||
alias rofic="$EDITOR ~/.config/rofi/config.rasi"
|
alias rofic="$EDITOR ~/.config/rofi/config.rasi"
|
||||||
|
alias vimrc="$EDITOR ~/.config/nvim/init.vim"
|
||||||
|
|
||||||
alias vim="nvim"
|
alias vim="nvim"
|
||||||
alias vi="vim"
|
alias vi="vim"
|
||||||
|
|
Loading…
Reference in New Issue