Revert "[nvim] use wildmenu"

This reverts commit 5ad510c830.
This commit is contained in:
Dmytro Meleshko 2021-07-03 10:06:54 +03:00
parent 71a04af8d7
commit 2504ef1135

View file

@ -1,3 +1,9 @@
" Replicate the behavior of Zsh's complist module under my configuration.
" 1st <Tab> - complete till the longest common prefix (longest).
" 2nd <Tab> - list the matches, but don't select or complete anything yet (list).
" 3rd <Tab> - start the selection menu (i.e. wildmenu), select and complete the first match (full).
set wildmenu wildmode=longest,list,full
" always show the sign column
set signcolumn=yes