We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
blink.cmp
See It Yourself:
return { { "saghen/blink.cmp", lazy = false, version = "*", dependencies = { { "L3MON4D3/LuaSnip", build = "make install_jsregexp" }, "saadparwaiz1/cmp_luasnip", "rafamadriz/friendly-snippets", { "saghen/blink.compat", version = "*", opts = { impersonate_nvim_cmp = true }, }, }, ---@module 'blink.cmp' ---@type blink.cmp.Config opts = { snippets = { expand = function(snippet) require("luasnip").lsp_expand(snippet) end, active = function(filter) if filter and filter.direction then return require("luasnip").jumpable(filter.direction) end return require("luasnip").in_snippet() end, jump = function(direction) require("luasnip").jump(direction) end, }, sources = { completion = { enabled_providers = { "luasnip", "lsp", "path", "snippets", "buffer" }, menu = { draw = { columns = { { "kind_icon", "label", gap = 1 }, { "kind" } }, }, }, }, providers = { luasnip = { name = "luasnip", module = "blink.compat.source", score_offset = -3, opts = { use_show_condition = false, show_autosnippets = true, }, }, }, }, keymap = { preset = "enter" }, vim.api.nvim_set_hl(0, "BlinkCmpMenu", { bg = "#212136", fg = "#cdd6f4" }), vim.api.nvim_set_hl(0, "BlinkCmpMenuBorder", { bg = "#1e1e2e", fg = "#585b70" }), vim.api.nvim_set_hl(0, "BlinkCmpDoc", { bg = "#212136", fg = "#cdd6f4" }), vim.api.nvim_set_hl(0, "BlinkCmpDocBorder", { bg = "#1e1e2e", fg = "#585b70" }), appearance = { use_nvim_cmp_as_default = true, nerd_font_variant = "normal", kind_icons = { Array = " ", Boolean = " ", Class = " ", Codeium = " ", Color = " ", Control = " ", Collapsed = " ", Constant = " ", Constructor = " ", Copilot = " ", Enum = " ", EnumMember = " ", Event = " ", Field = " ", File = " ", Folder = " ", Function = " ", Interface = " ", Key = " ", Keyword = " ", Method = " ", Module = " ", Namespace = " ", Null = " ", Number = " ", Object = " ", Operator = " ", Package = " ", Property = " ", Reference = " ", Snippet = " ", String = " ", Struct = " ", TabNine = " ", Text = " ", TypeParameter = " ", Unit = " ", Value = " ", Variable = " ", }, }, }, }, }
v0.10.2
main
The text was updated successfully, but these errors were encountered:
I tried blink luasnip, just changed the dependecies block and changed module, and no errors! Idk if blink_luasnip is official, though it works!
Sorry, something went wrong.
08b59ed
No branches or pull requests
Make sure you have done the following
blink.cmp
Bug Description
See It Yourself:

Relevant configuration
neovim version
v0.10.2
blink.cmp
version: branch, tag, or commitmain
The text was updated successfully, but these errors were encountered: