From 8e8a47c11f610e66b190a3ceaf63514cc8fa638e Mon Sep 17 00:00:00 2001 From: David Ward Date: Sun, 18 Dec 2022 21:15:37 -0500 Subject: [PATCH] Do not override treesitter lua highlighting with sumneko lua highlighting Signed-off-by: David Ward --- init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.lua b/init.lua index 52a0b98c..60b58fe4 100644 --- a/init.lua +++ b/init.lua @@ -382,6 +382,8 @@ require('lspconfig').sumneko_lua.setup { workspace = { library = vim.api.nvim_get_runtime_file('', true) }, -- Do not send telemetry data containing a randomized but unique identifier telemetry = { enable = false }, + -- Do not override treesitter lua highlighting with sumneko lua highlighting + semantic = { enable = false }, }, }, }