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, + }, + }, + }, +}