aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-03 20:18:41 +0900
committernsfisis <nsfisis@gmail.com>2026-05-03 20:18:41 +0900
commitbc51d43683af248701308bc0e17cfe8d270ff8e1 (patch)
treec94773a9fb1587a4342e0d16e94a295bb5f2be3d
parent09575fc2cde082d9018528665468254074018f3f (diff)
downloaddotfiles-bc51d43683af248701308bc0e17cfe8d270ff8e1.tar.gz
dotfiles-bc51d43683af248701308bc0e17cfe8d270ff8e1.tar.zst
dotfiles-bc51d43683af248701308bc0e17cfe8d270ff8e1.zip
nvim: set pumborder=rounded and set completeopt+=noselect
-rw-r--r--.config/nvim/lua/init/01-options.lua10
1 files changed, 8 insertions, 2 deletions
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.