diff options
| author | 2025-07-16 12:42:41 +0300 | |
|---|---|---|
| committer | 2025-07-16 12:42:41 +0300 | |
| commit | 099b76f900713c120027b84b66986ccdf59362f8 (patch) | |
| tree | 52fcfb90558b0b7f5229fb03495322375b6a26ec /lua/config | |
| parent | feat: add LuaSnip as snippet engine (diff) | |
| download | neovim-configuration-099b76f900713c120027b84b66986ccdf59362f8.tar.gz neovim-configuration-099b76f900713c120027b84b66986ccdf59362f8.tar.bz2 neovim-configuration-099b76f900713c120027b84b66986ccdf59362f8.tar.lz neovim-configuration-099b76f900713c120027b84b66986ccdf59362f8.tar.xz neovim-configuration-099b76f900713c120027b84b66986ccdf59362f8.tar.zst neovim-configuration-099b76f900713c120027b84b66986ccdf59362f8.zip | |
fix: disable preselect and auto-insert for completion from `blink.cmp`
Diffstat (limited to 'lua/config')
| -rw-r--r-- | lua/config/plugins/completion.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/config/plugins/completion.lua b/lua/config/plugins/completion.lua index 64fdf6c..7acef49 100644 --- a/lua/config/plugins/completion.lua +++ b/lua/config/plugins/completion.lua @@ -37,6 +37,13 @@ return { }, completion = { + list = { + selection = { + auto_insert = false, + preselect = false, + }, + }, + documentation = { auto_show = true, auto_show_delay_ms = 500, |
