diff options
| author | seth <[email protected]> | 2022-08-27 23:54:36 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-08-30 07:37:31 -0400 |
| commit | 7ac25e0f42c96f78ddaaffa6df48844bfe6633e0 (patch) | |
| tree | 22dca260a9c45ce1bdc02a82bab65dd65dd4eb48 /.config/nvim/lua/getchoo/lsp/config/lsp_config.lua | |
| parent | cbb53c9a6660b8118d816258bc7c5dc0043c61c8 (diff) | |
moar plugins
Diffstat (limited to '.config/nvim/lua/getchoo/lsp/config/lsp_config.lua')
| -rw-r--r-- | .config/nvim/lua/getchoo/lsp/config/lsp_config.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.config/nvim/lua/getchoo/lsp/config/lsp_config.lua b/.config/nvim/lua/getchoo/lsp/config/lsp_config.lua index 4bf69e4..6b13d19 100644 --- a/.config/nvim/lua/getchoo/lsp/config/lsp_config.lua +++ b/.config/nvim/lua/getchoo/lsp/config/lsp_config.lua @@ -8,8 +8,8 @@ local on_attach = function(client, bufnr) end local all_config = { - on_attach = on_attach, capabilities = cmp.capabilities, + on_attach = on_attach, } local servers = {} @@ -18,6 +18,7 @@ for _, server in ipairs(sources.lsp_servers) do end servers["sumneko_lua"] = { + capabilities = cmp.capabilities, on_attach = on_attach, settings = { Lua = { @@ -30,9 +31,6 @@ servers["sumneko_lua"] = { workspace = { library = vim.api.nvim_get_runtime_file("", true), }, - telemetry = { - enable = false, - }, }, }, } |
