neovim configuration using rocks.nvim plugin manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: turn of LSP completion autotrigger this is annoying

+1 -1
+1 -1
lua/core/lsp/init.lua
··· 28 28 vim.api.nvim_create_autocmd("LspAttach", { 29 29 group = vim.api.nvim_create_augroup("user.lspattach", { clear = false }), 30 30 callback = function(ev) 31 - vim.lsp.completion.enable(true, ev.data.client_id, ev.buf, { autotrigger = true }) 31 + vim.lsp.completion.enable(true, ev.data.client_id, ev.buf, { autotrigger = false }) 32 32 end, 33 33 }) 34 34