diff options
Diffstat (limited to 'dot_config/nvim')
| -rw-r--r-- | dot_config/nvim/init.lua | 4 | ||||
| -rw-r--r-- | dot_config/nvim/lua/config/update.lua | 11 | ||||
| -rw-r--r-- | dot_config/nvim/lua/plugins/debug.lua | 14 | ||||
| -rw-r--r-- | dot_config/nvim/lua/plugins/lsp.lua | 89 |
4 files changed, 30 insertions, 88 deletions
diff --git a/dot_config/nvim/init.lua b/dot_config/nvim/init.lua index 32873d3..7559556 100644 --- a/dot_config/nvim/init.lua +++ b/dot_config/nvim/init.lua @@ -68,9 +68,6 @@ vim.pack.add({ gh("folke/lazydev.nvim"), gh("neovim/nvim-lspconfig"), gh("j-hui/fidget.nvim"), - gh("williamboman/mason.nvim"), - gh("williamboman/mason-lspconfig.nvim"), - gh("WhoIsSethDaniel/mason-tool-installer.nvim"), gh("stevearc/conform.nvim"), gh("mrcjkb/rustaceanvim"), gh("mfussenegger/nvim-lint"), @@ -80,7 +77,6 @@ vim.pack.add({ { src = gh("miroshQa/debugmaster.nvim"), version = "dashboard" }, gh("mfussenegger/nvim-dap"), gh("theHamsta/nvim-dap-virtual-text"), - gh("jay-babu/mason-nvim-dap.nvim"), -- Runner gh("stevearc/overseer.nvim"), diff --git a/dot_config/nvim/lua/config/update.lua b/dot_config/nvim/lua/config/update.lua index bc7ee3d..7910dee 100644 --- a/dot_config/nvim/lua/config/update.lua +++ b/dot_config/nvim/lua/config/update.lua @@ -1,10 +1,10 @@ -- Update orchestrator. Invoked from the justfile via: -- nvim +'lua require("config.update").run()' -- --- Cleans orphan plugins, applies plugin updates without prompting, then --- runs :MasonToolsUpdateSync. Run interactively (not --headless) so the --- diff buffer that vim.pack.update opens is actually visible — that --- buffer IS the changelog. Quit manually with :qa once reviewed. +-- Cleans orphan plugins then applies plugin updates without prompting. +-- Run interactively (not --headless) so the diff buffer that +-- vim.pack.update opens is actually visible — that buffer IS the +-- changelog. Quit manually with :qa once reviewed. local M = {} @@ -34,9 +34,6 @@ function M.run() print("[pack] updating plugins…") vim.pack.update(nil, { force = true }) - - print("[mason] updating tools…") - vim.cmd("MasonToolsUpdateSync") end return M diff --git a/dot_config/nvim/lua/plugins/debug.lua b/dot_config/nvim/lua/plugins/debug.lua index bef0d1c..0d97713 100644 --- a/dot_config/nvim/lua/plugins/debug.lua +++ b/dot_config/nvim/lua/plugins/debug.lua @@ -22,11 +22,6 @@ dap.adapters.gdb = { args = { "--interpreter=dap" }, env = get_env_vars, } -dap.adapters.codelldb = { - type = "executable", - command = "codelldb", - env = get_env_vars, -} local function get_program() local _program @@ -53,8 +48,8 @@ end dap.configurations.cpp = { { - name = "codelldb Launch", - type = "codelldb", + name = "lldb-dap Launch", + type = "lldb", request = "launch", cwd = "${workspaceFolder}", program = get_program, @@ -68,8 +63,3 @@ dap.configurations.c = dap.configurations.cpp dap.configurations.rust = dap.configurations.cpp require("nvim-dap-virtual-text").setup({}) -require("mason-nvim-dap").setup({ - automatic_installation = false, - handlers = {}, - ensure_installed = {}, -}) diff --git a/dot_config/nvim/lua/plugins/lsp.lua b/dot_config/nvim/lua/plugins/lsp.lua index a2a4036..5039d04 100644 --- a/dot_config/nvim/lua/plugins/lsp.lua +++ b/dot_config/nvim/lua/plugins/lsp.lua @@ -8,66 +8,30 @@ vim.lsp.enable("just") pcall(vim.lsp.enable, "tblgen_lsp_server") require("fidget").setup({}) -require("mason").setup({}) -require("mason-lspconfig").setup({ - ensure_installed = {}, - automatic_installation = false, - handlers = { - function(server_name) - vim.lsp.enable(server_name) - end, - }, -}) -require("mason-tool-installer").setup({ - ensure_installed = { - "actionlint", - "autotools-language-server", - -- basedpyright: provided by the system pkg manager (basedpyright-bin from - -- AUR on Arch, pkgs.basedpyright in remote-dev/home.nix on the VM). Mason's pypi - -- distro pulls `nodejs-wheel-binaries` whose Linux wheels are only - -- manylinux_2_28; uv's standalone python (manylinux2014) rejects them and - -- pip falls back to building Node from source, which fails on Ubuntu - -- 20.04's gcc 9.4 (<10, no -std=gnu++20). lspconfig finds it on PATH. - "bash-language-server", - "clangd", - "codelldb", - "codespell", - "css-lsp", - "dockerfile-language-server", - "gh", - "gh-actions-language-server", - "groovy-language-server", - "hadolint", - "html-lsp", - "jq", - "json-lsp", - "jsonlint", - "just-lsp", - "lua-language-server", - "markdownlint", - "mdformat", - "neocmakelsp", - "nginx-config-formatter", - "nginx-language-server", - "npm-groovy-lint", - "prettier", - "ruff", - "rust-analyzer", - "selene", - "shellcheck", - "shellharden", - "shfmt", - "stylelint", - "stylua", - "systemd-lsp", - "systemdlint", - "taplo", - "typescript-language-server", - "typos", - "yaml-language-server", - "yamllint", - "yq", - }, + +-- LSPs come from Home-Manager (see nix/common.nix). lspconfig ships the +-- default configs; we just opt-in per server. (Previously this was driven +-- by mason-lspconfig handlers; phase p6 of the nix migration removed +-- Mason entirely.) +vim.lsp.enable({ + "autotools_ls", + "basedpyright", + "bashls", + "clangd", + "cssls", + "dockerls", + "eslint", + "gh_actions_ls", + "html", + "jsonls", + "lua_ls", + "neocmake", + "ruff", + "rust_analyzer", + "systemd_ls", + "taplo", + "ts_ls", + "yamlls", }) vim.api.nvim_create_autocmd("LspAttach", { @@ -194,11 +158,9 @@ require("conform").setup({ bash = { "shfmt" }, cmake = { "cmake_format" }, css = { "prettier", "stylelint" }, - groovy = { "npm-groovy-lint" }, html = { "prettier" }, javascript = { "prettier" }, typescript = { "prettier" }, - jenkins = { "npm-groovy-lint" }, json = { "jq", "jsonlint" }, jsonc = { "prettier" }, just = { "just" }, @@ -230,12 +192,9 @@ local lint = require("lint") lint.linters_by_ft = { css = { "stylelint" }, dockerfile = { "hadolint" }, - groovy = { "npm-groovy-lint" }, - jenkins = { "npm-groovy-lint" }, json = { "jsonlint" }, markdown = { "markdownlint" }, makefile = { "checkmake" }, - systemd = { "systemdlint" }, yaml = { "yamllint", "yq" }, ghaction = { "actionlint" }, zsh = { "zsh" }, |
