diff --git a/.config/nvim/lua/plugins/extras/lang/go-extended.lua b/.config/nvim/lua/plugins/extras/lang/go-extended.lua index 72a84cf7..415a3ffa 100644 --- a/.config/nvim/lua/plugins/extras/lang/go-extended.lua +++ b/.config/nvim/lua/plugins/extras/lang/go-extended.lua @@ -10,6 +10,7 @@ return { }, { "ray-x/go.nvim", + enabled = false, dependencies = { "ray-x/guihua.lua", "neovim/nvim-lspconfig", diff --git a/.config/nvim/lua/plugins/extras/lang/python-extended.lua b/.config/nvim/lua/plugins/extras/lang/python-extended.lua index e5805387..9dff55f5 100644 --- a/.config/nvim/lua/plugins/extras/lang/python-extended.lua +++ b/.config/nvim/lua/plugins/extras/lang/python-extended.lua @@ -17,6 +17,13 @@ return { basedpyright = { analysis = { diagnosticSeverityOverrides = { + reportMissingTypeStubs = "information", -- import has no type stub file + reportIgnoreCommentWithoutRule = "warning", + reportUnreachable = "error", + reportPrivateLocalImportUsage = "error", + reportImplicitRelativeImport = "error", + reportInvalidCast = "error", + reportMissingSuperCall = false, reportUnusedCallResult = "information", reportUnusedExpression = "information", reportUnknownMemberType = "none", @@ -53,11 +60,6 @@ return { }, }, }, - [vim.g.lazyvim_python_ruff] = { - handlers = { - ["textDocument/publishDiagnostics"] = function() end, - }, - }, }, }, }, @@ -76,13 +78,6 @@ return { }, dependencies = { { "nvim-lua/plenary.nvim" }, - { - "hrsh7th/nvim-cmp", - dependencies = {}, - opts = function(_, opts) - table.insert(opts.sources, { name = "py-requirements" }) - end, - }, }, opts = {}, -- stylua: ignore diff --git a/.config/nvim/lua/plugins/extras/lang/web/html-css.lua b/.config/nvim/lua/plugins/extras/lang/web/html-css.lua index 44dca9d9..0e0e3878 100644 --- a/.config/nvim/lua/plugins/extras/lang/web/html-css.lua +++ b/.config/nvim/lua/plugins/extras/lang/web/html-css.lua @@ -75,12 +75,6 @@ return { ["scss"] = { stylelint }, ["less"] = { stylelint }, ["sugarss"] = { stylelint }, - ["vue"] = { stylelint }, - ["wxss"] = { stylelint }, - ["javascript"] = { stylelint }, - ["javascriptreact"] = { stylelint }, - ["typescript"] = { stylelint }, - ["typescriptreact"] = { stylelint }, }) return opts end, diff --git a/.config/nvim/lua/plugins/extras/lang/web/vue-3-extended.lua b/.config/nvim/lua/plugins/extras/lang/web/vue-3-extended.lua index b7719e58..8b1097a7 100644 --- a/.config/nvim/lua/plugins/extras/lang/web/vue-3-extended.lua +++ b/.config/nvim/lua/plugins/extras/lang/web/vue-3-extended.lua @@ -35,10 +35,6 @@ return { }, }, }, - { - "dmmulroy/ts-error-translator.nvim", - opts = {}, - }, { "luckasRanarison/nvim-devdocs", optional = true,