aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-20 13:56:11 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-20 13:56:11 +0100
commitea3e273d4221720f932d401a64d0881c7b23263b (patch)
treefa8df18fe37551f4fe899344b0c75b9e1f7b1708 /dot_config
parentfe26523a4c0145036ed2bcd07d13594b2c39985b (diff)
downloaddotfiles-ea3e273d4221720f932d401a64d0881c7b23263b.tar.gz
dotfiles-ea3e273d4221720f932d401a64d0881c7b23263b.tar.bz2
dotfiles-ea3e273d4221720f932d401a64d0881c7b23263b.zip
drop residual Mason references after p6 migration
- zsh: remove ~/.local/share/nvim/mason/bin from PATH - justfile: update comments to reflect Mason removal
Diffstat (limited to 'dot_config')
-rw-r--r--dot_config/zsh/dot_zprofile5
1 files changed, 2 insertions, 3 deletions
diff --git a/dot_config/zsh/dot_zprofile b/dot_config/zsh/dot_zprofile
index 12b40fb..3722ac2 100644
--- a/dot_config/zsh/dot_zprofile
+++ b/dot_config/zsh/dot_zprofile
@@ -11,9 +11,8 @@ typeset -U path # deduplicate PATH entries
# Order: nix-profile (Home-Manager-provisioned tools) wins over the system
# package manager so the same HM flake delivers the same tool versions on
# both host (Arch) and VM (Ubuntu). ~/.local/bin keeps room for ad-hoc
-# user scripts; mason bin stays during the Mason→nix transition (phase p6
-# of the nix migration removes it).
-path=("$HOME/.nix-profile/bin" "$HOME/.local/bin" "$HOME/.local/share/nvim/mason/bin" $path)
+# user scripts.
+path=("$HOME/.nix-profile/bin" "$HOME/.local/bin" $path)
# ── XDG Base Directories ─────────────────────────────────────────────────────
export XDG_CONFIG_HOME="$HOME/.config"