@@ -2,14 +2,7 @@ call plug#begin('~/.local/share/nvim/plugged')
2
2
" lint
3
3
Plug ' w0rp/ale' , { ' on' : ' ALEToggle' }
4
4
" complete
5
- Plug ' Shougo/deoplete.nvim' , { ' do' : ' :UpdateRemotePlugins' }
6
- " viml complete source
7
- Plug ' Shougo/neco-vim'
8
- " language server
9
- Plug ' autozimu/LanguageClient-neovim' , {
10
- \ ' branch' : ' next' ,
11
- \ ' do' : ' bash install.sh' ,
12
- \ }
5
+ Plug ' neoclide/coc.nvim' , {' branch' : ' release' }
13
6
" outline
14
7
Plug ' majutsushi/tagbar'
15
8
Plug ' vim-airline/vim-airline'
@@ -74,14 +67,6 @@ call plug#end()
74
67
let mapleader= " ,"
75
68
set noswapfile
76
69
map <leader> js :call json_format#parse("l")<cr>
77
- " deoplete
78
- let g: deoplete #enable_at_startup = 1
79
- let g: deoplete #ignore_sources = get (g: , ' deoplete#ignore_sources' , {})
80
- set hidden
81
- let g: LanguageClient_diagnosticsEnable = 0
82
- let g: LanguageClient_serverCommands = {
83
- \ ' python' : [' pyls' ],
84
- \ }
85
70
" <TAB>: completion.
86
71
inoremap <expr> <TAB> pumvisible() ? "\<C-n> " : "\<TAB> "
87
72
@@ -142,7 +127,6 @@ let g:go_highlight_operators = 1
142
127
let g: go_highlight_structs = 1
143
128
let g: go_highlight_types = 1
144
129
145
- "
146
130
func ! RunProgram ()
147
131
exec " w"
148
132
if &filetype == ' c'
@@ -366,8 +350,6 @@ let s:bot = {
366
350
\ }
367
351
\ }
368
352
let g: vwm #layouts = [s: bot ]
369
- " https://github.com/Shougo/deoplete.nvim/issues/440
370
- let g: deoplete #auto_complete_delay = 150
371
353
372
354
" clang_format
373
355
let g: clang_format #style_options = {
0 commit comments