mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2026-06-14 23:18:06 +00:00
18 lines
257 B
Lua
18 lines
257 B
Lua
---@type LazySpec
|
|
return {
|
|
'blink.cmp',
|
|
---@type blink.cmp.Config
|
|
opts = {
|
|
keymap = {
|
|
['<Tab>'] = {
|
|
'select_next',
|
|
'fallback',
|
|
},
|
|
|
|
['<S-Tab>'] = {
|
|
'select_prev',
|
|
'fallback',
|
|
},
|
|
},
|
|
},
|
|
}
|