From d5dff83e533df7ed10cbf1a5401204f6e8118325 Mon Sep 17 00:00:00 2001 From: Juliano Barbosa Date: Tue, 5 Sep 2023 09:08:25 -0300 Subject: [PATCH] feat(nvim): added mason and dap --- init.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 7537f3f5..23873582 100644 --- a/init.lua +++ b/init.lua @@ -91,7 +91,15 @@ require('lazy').setup({ end, dependencies = { -- Automatically install LSPs to stdpath for neovim - { 'williamboman/mason.nvim', config = true }, + { + 'williamboman/mason.nvim', + opts = { + ensure_installed = { + "typescript-language-server" + } + }, + config = true + }, 'williamboman/mason-lspconfig.nvim', { "WhoIsSethDaniel/mason-tool-installer.nvim" }, @@ -541,7 +549,6 @@ MasonToolInstaller.setup({ { "helm-ls", auto_update = true }, { "html-lsp" }, { "html-lsp", auto_update = true }, - { "jason-lsp", auto_update = true }, { "jq-lsp", auto_update = true }, { "jsonls" }, { "lua-language-server", auto_update = true },