From de6447fe19b6473b6b1a5f220d9c782151a77d6a Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Tue, 17 Jun 2025 22:14:10 -0400 Subject: [PATCH] nvim: Comment out matlab lsp config --- nvim/.config/nvim/lua/plugins/lsp.lua | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins/lsp.lua b/nvim/.config/nvim/lua/plugins/lsp.lua index a6784fb..76556d2 100644 --- a/nvim/.config/nvim/lua/plugins/lsp.lua +++ b/nvim/.config/nvim/lua/plugins/lsp.lua @@ -176,17 +176,17 @@ return { } } - require('lspconfig').matlab_ls.setup({ - settings = { - filetypes = { - "matlab" - }, - matlab = { - installPath = "/opt/matlab/R2023a/" - } - }, - single_file_support = true - }) + -- require('lspconfig').matlab_ls.setup({ + -- settings = { + -- filetypes = { + -- "matlab" + -- }, + -- matlab = { + -- installPath = "/opt/matlab/R2023a/" + -- } + -- }, + -- single_file_support = true + -- }) end } }