feat: new and improved blink.cmp config
This commit is contained in:
parent
70b946881b
commit
0f1039ca8f
1 changed files with 23 additions and 6 deletions
|
@ -1,13 +1,30 @@
|
|||
return {
|
||||
"blink-cmp",
|
||||
"blink.cmp",
|
||||
event = "BufEnter",
|
||||
after = function()
|
||||
require("blink-cmp").setup({
|
||||
-- for keymap, all values may be string | string[]
|
||||
-- use an empty table to disable a keymap
|
||||
keymap = {
|
||||
preset = "default",
|
||||
require("blink.cmp").setup({
|
||||
keymap = { preset = "default" },
|
||||
|
||||
appearance = {
|
||||
use_nvim_cmp_as_default = true,
|
||||
nerd_font_variant = "normal",
|
||||
},
|
||||
|
||||
sources = {
|
||||
default = { "lsp", "path", "snippets", "buffer" },
|
||||
},
|
||||
completion = {
|
||||
menu = { border = "single" },
|
||||
documentation = {
|
||||
auto_show = true,
|
||||
auto_show_delay_ms = 500,
|
||||
update_delay_ms = 50,
|
||||
treesitter_highlighting = true,
|
||||
window = { border = "single" },
|
||||
},
|
||||
},
|
||||
signature = { window = { border = "single" } },
|
||||
fuzzy = { prebuilt_binaries = { force_version = "" } },
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue