Remove deoplete
This commit is contained in:
parent
de4c7a1362
commit
dfadc40ba3
9
.gitmodules
vendored
9
.gitmodules
vendored
@ -67,15 +67,6 @@
|
|||||||
[submodule ".vim/bundle/fzf.vim"]
|
[submodule ".vim/bundle/fzf.vim"]
|
||||||
path = pack/plugins/start/fzf.vim
|
path = pack/plugins/start/fzf.vim
|
||||||
url = https://github.com/junegunn/fzf.vim.git
|
url = https://github.com/junegunn/fzf.vim.git
|
||||||
[submodule ".vim/bundle_extra/deoplete.nvim"]
|
|
||||||
path = pack/plugins/start/deoplete.nvim
|
|
||||||
url = https://github.com/Shougo/deoplete.nvim.git
|
|
||||||
[submodule ".vim/bundle_extra/nvim-yarp"]
|
|
||||||
path = pack/plugins/start/nvim-yarp
|
|
||||||
url = https://github.com/roxma/nvim-yarp.git
|
|
||||||
[submodule ".vim/bundle_extra/vim-hug-neovim-rpc"]
|
|
||||||
path = pack/plugins/start/vim-hug-neovim-rpc
|
|
||||||
url = https://github.com/roxma/vim-hug-neovim-rpc
|
|
||||||
[submodule ".vim/bundle/tcomment_vim"]
|
[submodule ".vim/bundle/tcomment_vim"]
|
||||||
path = pack/plugins/start/tcomment_vim
|
path = pack/plugins/start/tcomment_vim
|
||||||
url = https://github.com/tomtom/tcomment_vim
|
url = https://github.com/tomtom/tcomment_vim
|
||||||
|
@ -39,11 +39,10 @@ nnoremap <C-l> <C-W>l
|
|||||||
nnoremap j gj
|
nnoremap j gj
|
||||||
nnoremap k gk
|
nnoremap k gk
|
||||||
|
|
||||||
inoremap <expr><tab> pumvisible() ? '<C-y>' : '<tab>'
|
|
||||||
inoremap <expr><cr> pumvisible() ? '<C-e><cr>' : '<cr>'
|
|
||||||
|
|
||||||
" util
|
" util
|
||||||
nnoremap <leader>ig :Guid<cr>
|
nnoremap <leader>ig :Guid<cr>
|
||||||
|
inoremap <expr><tab> pumvisible() ? '<C-y>' : '<tab>'
|
||||||
|
inoremap <expr><cr> pumvisible() ? '<C-e><cr>' : '<cr>'
|
||||||
|
|
||||||
" ale
|
" ale
|
||||||
nnoremap gd :ALEGoToDefinition<cr>
|
nnoremap gd :ALEGoToDefinition<cr>
|
||||||
|
@ -13,7 +13,7 @@ set background=dark
|
|||||||
set backspace=indent,eol,start
|
set backspace=indent,eol,start
|
||||||
set belloff=all
|
set belloff=all
|
||||||
set complete-=i
|
set complete-=i
|
||||||
set completeopt=longest,menuone,noinsert
|
set completeopt=menuone,noinsert
|
||||||
set encoding=utf-8
|
set encoding=utf-8
|
||||||
set expandtab
|
set expandtab
|
||||||
set fileformats=unix,dos,mac
|
set fileformats=unix,dos,mac
|
||||||
|
@ -1 +0,0 @@
|
|||||||
Subproject commit 27be5ec45cf52223b225b25517bc088cfcf3c959
|
|
@ -1 +0,0 @@
|
|||||||
Subproject commit b710bf4daccb603a423754794fb446e5fbb59576
|
|
@ -1 +0,0 @@
|
|||||||
Subproject commit 93ae38792bc197c3bdffa2716ae493c67a5e7957
|
|
@ -1,18 +1,11 @@
|
|||||||
" ale
|
" ale
|
||||||
|
let g:ale_completion_enabled = 1
|
||||||
let g:ale_linters_explicit = 1
|
let g:ale_linters_explicit = 1
|
||||||
let g:ale_cpp_ccls_init_options = {
|
let g:ale_cpp_ccls_init_options = {
|
||||||
\ 'cacheDirectory': '/tmp/ccls',
|
\ 'cacheDirectory': '/tmp/ccls',
|
||||||
\ 'cacheFormat': 'binary',
|
\ 'cacheFormat': 'binary',
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
" deoplete.nvim
|
|
||||||
if has('python3')
|
|
||||||
let g:deoplete#enable_at_startup = 1
|
|
||||||
if len($PYTHON3_HOST_PROG) > 0
|
|
||||||
let g:python3_host_prog=$PYTHON3_HOST_PROG
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
" fzf
|
" fzf
|
||||||
let $FZF_DEFAULT_COMMAND='ag --hidden --ignore .git -f -g "" 2> /dev/null'
|
let $FZF_DEFAULT_COMMAND='ag --hidden --ignore .git -f -g "" 2> /dev/null'
|
||||||
if has('windows')
|
if has('windows')
|
||||||
|
Loading…
Reference in New Issue
Block a user