From 4d566663232ae67237a198268268426036e45a58 Mon Sep 17 00:00:00 2001 From: User Date: Fri, 10 Oct 2025 18:16:50 +0000 Subject: [PATCH] chore: remove obsolete Mason configuration files - Remove python.lua and vue.lua files (replaced by dynamic init.lua) - Remove mason/.gitignore file --- lua/plugins/mason/.gitignore | 1 - lua/plugins/mason/python.lua | 27 --------------------------- lua/plugins/mason/vue.lua | 26 -------------------------- 3 files changed, 54 deletions(-) delete mode 100644 lua/plugins/mason/.gitignore delete mode 100644 lua/plugins/mason/python.lua delete mode 100644 lua/plugins/mason/vue.lua diff --git a/lua/plugins/mason/.gitignore b/lua/plugins/mason/.gitignore deleted file mode 100644 index dd23724..0000000 --- a/lua/plugins/mason/.gitignore +++ /dev/null @@ -1 +0,0 @@ -init.lua diff --git a/lua/plugins/mason/python.lua b/lua/plugins/mason/python.lua deleted file mode 100644 index f316954..0000000 --- a/lua/plugins/mason/python.lua +++ /dev/null @@ -1,27 +0,0 @@ --- Customize Mason - ----@type LazySpec -return { - -- use mason-tool-installer for automatically installing Mason packages - { - "WhoIsSethDaniel/mason-tool-installer.nvim", - -- overrides `require("mason-tool-installer").setup(...)` - opts = { - -- Make sure to use the names found in `:Mason` - ensure_installed = { - -- { "vue-language-server", version = "1.8.27" }, - "black", - "python-lsp-server", - "mypy", - "pylint", - "flake8", - "pylama", - "bandit", - "pydocstyle", - "pyproject-flake8", - "pyproject-fmt", - "reorder-python-imports", - }, - }, - }, -} diff --git a/lua/plugins/mason/vue.lua b/lua/plugins/mason/vue.lua deleted file mode 100644 index 1d61304..0000000 --- a/lua/plugins/mason/vue.lua +++ /dev/null @@ -1,26 +0,0 @@ --- Customize Mason - ----@type LazySpec -return { - -- use mason-tool-installer for automatically installing Mason packages - { - "WhoIsSethDaniel/mason-tool-installer.nvim", - -- overrides `require("mason-tool-installer").setup(...)` - opts = { - -- Make sure to use the names found in `:Mason` - ensure_installed = { - -- lspconfig - "eslint-lsp", - "stylelint-lsp", - "tailwindcss-language-server", - "typescript-language-server", - "vue-language-server", - -- { "vue-language-server", version = "1.8.27" }, - - -- null_ls - "stylelint", - "prettier", - }, - }, - }, -}