From f60b4dc97bf7204a5bc3fe316df2ce4bd709babd Mon Sep 17 00:00:00 2001 From: Leander <80996591+m0ntagur@users.noreply.github.com> Date: Sat, 22 Jul 2023 15:38:23 +0200 Subject: Delete nvim directory --- nvim/plugin/mason.lua | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 nvim/plugin/mason.lua (limited to 'nvim/plugin/mason.lua') diff --git a/nvim/plugin/mason.lua b/nvim/plugin/mason.lua deleted file mode 100644 index 91952e4..0000000 --- a/nvim/plugin/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