diff options
| author | Nic Gaffney <gaffney_nic@protonmail.com> | 2026-04-18 04:29:55 -0500 |
|---|---|---|
| committer | Nic Gaffney <gaffney_nic@protonmail.com> | 2026-04-18 04:29:55 -0500 |
| commit | 268cce40329eb3a91665ebe3ce65a0aa7b2c692e (patch) | |
| tree | 179f74cb920740ce03893f6d0cd51b74ad4f7800 /lua/config/packages/blink.lua | |
| download | nvim-268cce40329eb3a91665ebe3ce65a0aa7b2c692e.tar.gz | |
initial
Diffstat (limited to 'lua/config/packages/blink.lua')
| -rw-r--r-- | lua/config/packages/blink.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/config/packages/blink.lua b/lua/config/packages/blink.lua new file mode 100644 index 0000000..b4f1433 --- /dev/null +++ b/lua/config/packages/blink.lua @@ -0,0 +1,11 @@ +vim.pack.add({ { src = gh("saghen/blink.cmp"), version = vim.version.range("1.*") } }) + +require("blink.cmp").setup({ + sources = { default = { "lsp", "path" } }, + signature = { enabled = true }, -- show signature help + completion = { + documentation = { auto_show = true, auto_show_delay_ms = 500 }, + list = { selection = { preselect = false, auto_insert = true } }, + }, + keymap = { preset = "default" }, +}) |
