1return {
2 "saghen/blink.cmp",
3 dependencies = { "rafamadriz/friendly-snippets" },
4
5 version = "1.*",
6 opts = {
7 keymap = { preset = "enter" },
8 appearance = {
9 nerd_font_variant = "mono",
10 },
11
12 completion = { documentation = { auto_show = false } },
13
14 -- Default list of enabled providers defined so that you can extend it
15 -- elsewhere in your config, without redefining it, due to `opts_extend`
16 sources = {
17 default = { "lsp", "path", "snippets", "buffer" },
18 },
19 fuzzy = { implementation = "prefer_rust_with_warning" },
20 },
21 opts_extend = { "sources.default" },
22}