vim.pack.add({ { src = "https://github.com/saghen/blink.cmp", version = vim.version.range("^1") }, { src = "https://github.com/L3MON4D3/LuaSnip" }, { src = "https://github.com/rafamadriz/friendly-snippets" }, }) require("blink.cmp").setup({ keymap = { preset = "default" }, appearance = { nerd_font_variant = "mono", use_nvim_cmp_as_default = true, }, completion = { documentation = { auto_show = true }, }, sources = { default = { "lsp", "path", "snippets", "buffer" }, }, fuzzy = { implementation = "prefer_rust_with_warning" }, })