From e5d4605dab5274db036a5edbd0d31012158e8d20 Mon Sep 17 00:00:00 2001 From: Leander <80996591+m0ntagur@users.noreply.github.com> Date: Sat, 13 Aug 2022 00:28:05 +0200 Subject: Delete mason.lua --- mason.lua | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 mason.lua diff --git a/mason.lua b/mason.lua deleted file mode 100644 index 91952e4..0000000 --- a/mason.lua +++ /dev/null @@ -1,24 +0,0 @@ -local status, mason = pcall(require, 'mason') -if (not status) then return end - -local status2, masonlspconfig = pcall(require, 'mason-lspconfig') -if (not status2) then return end - -mason.setup({ - ui = { - icons = { - package_installed = "✓", - package_pending = "➜", - package_uninstalled = "✗" - } - } -}) - -masonlspconfig.setup { - - ensure_installed = {}, - - -- false: Servers are not automatically installed. - -- true: All servers set up via lspconfig are automatically installed. - automatic_installation = false, -} -- cgit v1.3.1