aboutsummaryrefslogtreecommitdiff
path: root/nvim/plugin/mason.lua
diff options
context:
space:
mode:
authorLeander <80996591+m0ntagur@users.noreply.github.com>2023-07-22 15:38:23 +0200
committerGitHub <noreply@github.com>2023-07-22 15:38:23 +0200
commitf60b4dc97bf7204a5bc3fe316df2ce4bd709babd (patch)
tree21bb5a36cd7f206bfef73a44fd2a0cdf2a27e82e /nvim/plugin/mason.lua
parent0561e714bb476d936e51f6e49292542712255dec (diff)
Delete nvim directory
Diffstat (limited to 'nvim/plugin/mason.lua')
-rw-r--r--nvim/plugin/mason.lua24
1 files changed, 0 insertions, 24 deletions
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,
-}