From aad939bb93dfe5f057aac4bc1cb635f69ce95aea Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Sat, 17 Aug 2024 22:24:54 -0400 Subject: [PATCH] add meson lsp support --- home-manager/nvim.nix | 2 ++ nvim/lua/plugins/meson.lua | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 nvim/lua/plugins/meson.lua diff --git a/home-manager/nvim.nix b/home-manager/nvim.nix index 438eb41..73f9830 100644 --- a/home-manager/nvim.nix +++ b/home-manager/nvim.nix @@ -11,6 +11,8 @@ )) # C++ meson + mesonlsp + pkg-config ninja cmake gnumake diff --git a/nvim/lua/plugins/meson.lua b/nvim/lua/plugins/meson.lua new file mode 100644 index 0000000..eae5fdf --- /dev/null +++ b/nvim/lua/plugins/meson.lua @@ -0,0 +1,10 @@ +return { + "neovim/nvim-lspconfig", + opts = { + servers = { + mesonlsp = { + mason = false, + }, + }, + }, +}