aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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.