diff options
| author | Robert Günzler <r@gnzler.io> | 2021-06-11 13:05:05 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-06-11 13:05:05 +0200 |
| commit | 7f68dd013f46de0bed23452b89879038110114a6 (patch) | |
| tree | 72abe3e569b076e11324dd4f879c25c5b3807598 /.vim/init.lua | |
| parent | 5e79cfa901f1b1b89dc1a1a351d7708d13a5e042 (diff) | |
vim: refactor nvim-completion configuration
Diffstat (limited to '.vim/init.lua')
| -rw-r--r-- | .vim/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.vim/init.lua b/.vim/init.lua index 5ef9798..3e06bc9 100644 --- a/.vim/init.lua +++ b/.vim/init.lua @@ -38,7 +38,7 @@ u.opt('w', 'foldlevel', 0) u.opt('w', 'foldmethod', 'marker') u.opt('o', 'fillchars', 'fold:─') u.opt('o', 'complete', '.,w,b,u') -u.opt('o', 'completeopt', 'menuone,noinsert,noselect,preview') +u.opt('o', 'completeopt', 'menuone,noinsert,noselect') cmd('set shortmess+=c') u.opt('w', 'statusline', '%!luaeval("statusline()")') u.opt('o', 'cmdheight', 1) |