diff options
author | Matthew Lemon <y@yulqen.org> | 2023-04-25 11:50:46 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-04-25 11:50:46 +0100 |
commit | 6b59d74eba9112e02cced9e029da127687b446d0 (patch) | |
tree | a4a228e01fadc570a224100b5b687bc2f13cf65a /vim | |
parent | f1eb8ed99950175a574bead984bbf5daaff9403a (diff) |
Removes easycomplete and reverts to vim completion
Diffstat (limited to 'vim')
-rw-r--r-- | vim/vimrc | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -60,7 +60,7 @@ Plug 'tpope/vim-fugitive' Plug 'tpope/vim-dispatch' Plug 'tpope/vim-commentary' "Plug 'ycm-core/YouCompleteMe' -Plug 'jayli/vim-easycomplete' +"Plug 'jayli/vim-easycomplete' Plug 'rose-pine/vim' Plug 'SirVer/UltiSnips' Plug 'honza/vim-snippets' @@ -69,7 +69,7 @@ Plug 'davidhalter/jedi-vim' call plug#end() " easycomplete -let g:easycomplete_tab_trigger="<c-space>" +"let g:easycomplete_tab_trigger="<c-space>" " jedi-vim let g:jedi#goto_command = "<leader>d" @@ -203,6 +203,8 @@ autocmd BufLeave * call s:copy_filename_as_mdlink() let g:UltiSnipsExpandTrigger="<tab>" let g:UltiSnipsJumpForwardTrigger="<c-j>" let g:UltiSnipsJumpBackwardTrigger="<c-k>" +set completefunc=UltiSnips#Complete + " vim-test " use vim-dispatch to run tests in the quickfix window |