From cea034bd828e532b6d042f08774a09b78f534fef Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Mon, 7 Oct 2024 22:39:54 +0200 Subject: [PATCH] feat(meson): add mesonlsp --- lua/lsp/config/mesonlsp.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/lsp/config/mesonlsp.lua diff --git a/lua/lsp/config/mesonlsp.lua b/lua/lsp/config/mesonlsp.lua new file mode 100644 index 0000000..48a283a --- /dev/null +++ b/lua/lsp/config/mesonlsp.lua @@ -0,0 +1,12 @@ +---@type ServerConfig +return { + enable = true, + mason = { "mesonlsp" }, + lspconfig = { + settings = { + others = { + disableInlayHints = true, + }, + }, + }, +}