From 82093cf953e5853dda98f55745127cdd386a793f Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Fri, 7 Jun 2024 10:42:46 +0100 Subject: [PATCH] [2024-06-07] Adding lua_ls and addding $HOME directory for language servers --- nvim/lua/plugins/lua_ls.lua | 8 ++++++++ nvim/lua/plugins/matlab_ls.lua | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 nvim/lua/plugins/lua_ls.lua diff --git a/nvim/lua/plugins/lua_ls.lua b/nvim/lua/plugins/lua_ls.lua new file mode 100644 index 0000000..fd36b83 --- /dev/null +++ b/nvim/lua/plugins/lua_ls.lua @@ -0,0 +1,8 @@ +local coq = require("coq") +local util = require("lspconfig.util") +require('lspconfig').lua_ls.setup( + coq.lsp_ensure_capabilities({ + cmd = { os.getenv("HOME") .. "/lua-language-server/bin/lua-language-server" }, + root_dir = util.root_pattern('init.lua'), + }) +) diff --git a/nvim/lua/plugins/matlab_ls.lua b/nvim/lua/plugins/matlab_ls.lua index 61426bd..ce03d11 100644 --- a/nvim/lua/plugins/matlab_ls.lua +++ b/nvim/lua/plugins/matlab_ls.lua @@ -2,7 +2,7 @@ local coq = require("coq") local util = require("lspconfig.util") require('lspconfig').matlab_ls.setup( coq.lsp_ensure_capabilities({ - cmd = { "node", "/mathworks/home/aconlin/MATLAB-language-server/out/index.js", "--stdio" }, + cmd = { "node", os.getenv("HOME") .. "/MATLAB-language-server/out/index.js", "--stdio" }, root_dir = util.root_pattern('mw_anchor'), settings = { MATLAB = {