From bc51d43683af248701308bc0e17cfe8d270ff8e1 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 3 May 2026 20:18:41 +0900 Subject: nvim: set pumborder=rounded and set completeopt+=noselect --- .config/nvim/lua/init/01-options.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to '.config/nvim/lua') diff --git a/.config/nvim/lua/init/01-options.lua b/.config/nvim/lua/init/01-options.lua index 20255cc..c9c56d2 100644 --- a/.config/nvim/lua/init/01-options.lua +++ b/.config/nvim/lua/init/01-options.lua @@ -88,13 +88,19 @@ end O.undofile = true O.textwidth = 0 -OPT.completeopt:append('fuzzy') -O.pumheight = 10 OPT.matchpairs:append('<:>') O.joinspaces = false OPT.nrformats:append('unsigned') +-- Completion {{{1 + +OPT.completeopt:append('noselect') +OPT.completeopt:append('fuzzy') +O.pumheight = 10 +O.pumborder = 'rounded' + + -- Tabs and indenting {{{1 -- Note: you should also set them for each file types. -- These following settings are used for unknown file types. -- cgit v1.3.1