aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config
diff options
context:
space:
mode:
Diffstat (limited to 'dot_config')
-rw-r--r--dot_config/nvim/init.lua4
-rw-r--r--dot_config/nvim/lua/config/update.lua11
-rw-r--r--dot_config/nvim/lua/plugins/debug.lua14
-rw-r--r--dot_config/nvim/lua/plugins/lsp.lua89
-rw-r--r--dot_config/zsh/dot_zshrc15
5 files changed, 38 insertions, 95 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" },
diff --git a/dot_config/zsh/dot_zshrc b/dot_config/zsh/dot_zshrc
index b227c8f..f94b82e 100644
--- a/dot_config/zsh/dot_zshrc
+++ b/dot_config/zsh/dot_zshrc
@@ -418,7 +418,8 @@ _fzf_compgen_path() { fd --hidden --follow --exclude ".git" . "$1" }
_fzf_compgen_dir() { fd --type d --hidden --follow --exclude ".git" . "$1" }
# ── Plugins (must be sourced last) ────────────────────────────────────────────
-# Plugin locations: Arch system path first, ~/.nix-profile fallback for VM HM.
+# Plugin locations: ~/.nix-profile (Home-Manager) first, Arch system path as
+# fallback for un-bootstrapped states.
_source_first() {
local f
for f in "$@"; do
@@ -432,17 +433,17 @@ ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
typeset -A ZSH_HIGHLIGHT_STYLES
ZSH_HIGHLIGHT_STYLES[comment]='fg=yellow'
_source_first \
- /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh \
- $HOME/.nix-profile/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
+ $HOME/.nix-profile/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh \
+ /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
_source_first \
- /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh \
- $HOME/.nix-profile/share/zsh-autosuggestions/zsh-autosuggestions.zsh
+ $HOME/.nix-profile/share/zsh-autosuggestions/zsh-autosuggestions.zsh \
+ /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
bindkey '^[[Z' autosuggest-accept # Shift-Tab to accept suggestion
_source_first \
- /usr/share/zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh \
- $HOME/.nix-profile/share/zsh-history-substring-search/zsh-history-substring-search.zsh
+ $HOME/.nix-profile/share/zsh-history-substring-search/zsh-history-substring-search.zsh \
+ /usr/share/zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh
[[ -n "${key[Up]}" ]] && bindkey -- "${key[Up]}" history-substring-search-up
[[ -n "${key[Down]}" ]] && bindkey -- "${key[Down]}" history-substring-search-down