You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
622 B
21 lines
622 B
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" },
|
|
})
|