diff --git a/nvim/plugin/interface.vim b/nvim/plugin/interface.vim index 183ec89..0c188f1 100644 --- a/nvim/plugin/interface.vim +++ b/nvim/plugin/interface.vim @@ -1,3 +1,9 @@ +" Replicate the behavior of Zsh's complist module under my configuration. +" 1st - complete till the longest common prefix (longest). +" 2nd - list the matches, but don't select or complete anything yet (list). +" 3rd - 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