Auto brackets with vim.lsp.config setup not working #2194
Unanswered
peaceknight05
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi! I've enabled auto brackets in the config but it doesn't seem to be working.
I'm using lazyvim as the plugin manager and I have a set of
/lsp/xxx.luafiles that are enabled ininit.lua, copied from the nvim-lspconfig repo. Both the blink and lsp checkhealths are fine. In the installation instructions its said that I don't have to touch the LSP capabilities on blink's side if I've done that so I have not.The rest of blink's features are working fine though, including suggestions from the LSP servers.
I saw from another Q&A here that it's likely an LSP issue, but I'm not sure where to go from there.
My lazy install for blink:
{ "saghen/blink.cmp", dependencies = { "rafamadriz/friendly-snippets" }, version = "1.*", ---@module "blink.cmp" ---@type blink.cmp.Config opts = { keymap = { preset = "super-tab" }, appearance = {nerd_font_variant = "mono"}, completion = { documentation = { auto_show = false }, accept = { auto_brackets = { enabled = true } }, }, sources = { default = { "lsp", "path", "snippets", "buffer" }, }, fuzzy = { implementation = "prefer_rust_with_warning" } }, opts_extend = { "sources.default" } }My init.lua:
Beta Was this translation helpful? Give feedback.
All reactions