vim: use popup for completion suggestions

feature/improve-speed
bretello 2021-03-15 12:36:31 +01:00
parent 3bab8cd959
commit fe83822b56
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,11 @@ set hlsearch "highlight search results (using *)
set expandtab shiftwidth=4 tabstop=4 "always use spaces
" Completion menu config (see :h completopt)
set completeopt=menu,menuone,noselect,noinsert
" Show completion suggestions in popups instead of preview window
set completeopt+=popup
autocmd FileType yaml,yml setlocal shiftwidth=2 softtabstop=2 expandtab
autocmd FileType vue setlocal shiftwidth=2 softtabstop=2 expandtab
autocmd FileType go setlocal noexpandtab