63 lines
1.4 KiB
Lua
63 lines
1.4 KiB
Lua
|
return {
|
||
|
'blink.cmp',
|
||
|
event = 'InsertEnter',
|
||
|
before = function()
|
||
|
require('lz.n').trigger_load({ 'mini.icons' })
|
||
|
end,
|
||
|
after = function()
|
||
|
---@module 'blink.cmp'
|
||
|
---@type blink.cmp.Config
|
||
|
local opts = {
|
||
|
appearance = {
|
||
|
use_nvim_cmp_as_default = false,
|
||
|
nerd_font_variant = 'mono',
|
||
|
},
|
||
|
completion = {
|
||
|
accept = {
|
||
|
auto_brackets = {
|
||
|
enabled = true,
|
||
|
},
|
||
|
},
|
||
|
menu = {
|
||
|
draw = {
|
||
|
treesitter = { 'lsp' },
|
||
|
components = {
|
||
|
kind_icon = {
|
||
|
ellipsis = false,
|
||
|
text = function(ctx)
|
||
|
local icon, _, _ = require('mini.icons').get('lsp', ctx.kind)
|
||
|
return icon
|
||
|
end,
|
||
|
highlight = function(ctx)
|
||
|
local _, hl, _ = require('mini.icons').get('lsp', ctx.kind)
|
||
|
return hl
|
||
|
end,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
documentation = {
|
||
|
auto_show = true,
|
||
|
auto_show_delay_ms = 200,
|
||
|
},
|
||
|
ghost_text = {
|
||
|
enabled = false,
|
||
|
},
|
||
|
list = {
|
||
|
selection = 'manual',
|
||
|
},
|
||
|
},
|
||
|
|
||
|
sources = {
|
||
|
default = { 'lsp', 'path', 'snippets', 'buffer', 'luasnip' },
|
||
|
},
|
||
|
|
||
|
keymap = {
|
||
|
preset = 'super-tab',
|
||
|
},
|
||
|
}
|
||
|
|
||
|
require('blink.cmp').setup(opts)
|
||
|
end,
|
||
|
}
|