mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
b080c54e5b
Also deprecate neovim config.
11 lines
384 B
VimL
11 lines
384 B
VimL
" setlocal nonumber norelativenumber
|
|
setlocal wrap
|
|
|
|
" Give me back my Tab and Return!!
|
|
inoremap <silent><expr> <C-j>
|
|
\ pumvisible() ? "\<C-n>" :
|
|
\ coc#expandableOrJumpable() ? "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>" :
|
|
\ <SID>check_back_space() ? "\<TAB>" :
|
|
\ coc#refresh()
|
|
inoremap <expr><C-k> pumvisible() ? "\<C-p>" : "\<C-h>"
|