diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-03 20:18:41 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-03 20:18:41 +0900 |
| commit | bc51d43683af248701308bc0e17cfe8d270ff8e1 (patch) | |
| tree | c94773a9fb1587a4342e0d16e94a295bb5f2be3d /.config/nvim | |
| parent | 09575fc2cde082d9018528665468254074018f3f (diff) | |
| download | dotfiles-bc51d43683af248701308bc0e17cfe8d270ff8e1.tar.gz dotfiles-bc51d43683af248701308bc0e17cfe8d270ff8e1.tar.zst dotfiles-bc51d43683af248701308bc0e17cfe8d270ff8e1.zip | |
nvim: set pumborder=rounded and set completeopt+=noselect
Diffstat (limited to '.config/nvim')
| -rw-r--r-- | .config/nvim/lua/init/01-options.lua | 10 |
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. |
