Files
system-config/home-manager/features/neovim/config/lua/plugins/blink.lua

15 lines
233 B
Lua

return {
"saghen/blink.cmp",
opts = {
keymap = {
preset = "default",
["<C-space>"] = {
function(cmp)
cmp.show()
end,
},
["<C-enter>"] = { "select_and_accept" },
},
},
}