i use arch btw
0
fork

Configure Feed

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

Add Ctrl-Space mapping to invoke completion menu

+8
+8
nvim/.config/nvim/lua/plugins.lua
··· 183 183 local lsp_zero = require("lsp-zero") 184 184 local lspconfig = require("lspconfig") 185 185 local schemastore = require("schemastore") 186 + local cmp = require("cmp") 187 + 188 + ---@diagnostic disable-next-line: missing-fields 189 + cmp.setup({ 190 + mapping = cmp.mapping.preset.insert({ 191 + ["<C-Space>"] = cmp.mapping.complete(), 192 + }), 193 + }) 186 194 187 195 lsp_zero.on_attach(function(client, bufnr) 188 196 -- see :help lsp-zero-keybindings