From f7d144628bd145a8d58f49e5cd1e8428a54d5e86 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 4 Mar 2026 07:18:45 +0000 Subject: [PATCH] fix: update mason org and ruff LSP server name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Replace williamboman/mason.nvim → mason-org/mason.nvim - Replace williamboman/mason-lspconfig.nvim → mason-org/mason-lspconfig.nvim (mason moved to the mason-org GitHub organisation) - Replace deprecated ruff_lsp server name with ruff in init.lua (ruff-lsp is deprecated; ruff now ships its own built-in LSP) https://claude.ai/code/session_015n34EuHJuJjs9txfysJ5g9 --- init.lua | 2 +- lua/kickstart/plugins/devstack.lua | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/init.lua b/init.lua index 698e0e65..ef29c305 100644 --- a/init.lua +++ b/init.lua @@ -697,7 +697,7 @@ require('lazy').setup({ -- Python basedpyright = {}, -- type checking - ruff_lsp = { -- linting + quickfixes + ruff = { -- linting + quickfixes on_attach = function(client) -- Let basedpyright handle hovers; ruff for diagnostics/code actions client.server_capabilities.hoverProvider = false diff --git a/lua/kickstart/plugins/devstack.lua b/lua/kickstart/plugins/devstack.lua index b78cd399..70c145a8 100644 --- a/lua/kickstart/plugins/devstack.lua +++ b/lua/kickstart/plugins/devstack.lua @@ -1,10 +1,10 @@ -- lua/kickstart/plugins/devstack.lua return { -- Mason core + LSP glue - { 'williamboman/mason.nvim', build = ':MasonUpdate', config = true }, + { 'mason-org/mason.nvim', build = ':MasonUpdate', config = true }, { - 'williamboman/mason-lspconfig.nvim', - dependencies = { 'williamboman/mason.nvim' }, + 'mason-org/mason-lspconfig.nvim', + dependencies = { 'mason-org/mason.nvim' }, opts = { ensure_installed = { -- LSP servers @@ -19,7 +19,7 @@ return { { -- Auto-install external tools on first start 'WhoIsSethDaniel/mason-tool-installer.nvim', - dependencies = { 'williamboman/mason.nvim' }, + dependencies = { 'mason-org/mason.nvim' }, opts = { ensure_installed = { -- Python