From 2bd7a0cef960f8838ad303b83e3fb04a299e7037 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sun, 12 May 2024 10:39:48 -0400 Subject: [PATCH] fish: Remove .deno from $PATH It turns out I don't use deno nearly as much as I thought I would, especially when the current node ecosystem works so, so well in comparison. I also haven't encountered any deno-specific programs that would be worth installing globally. --- home/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/fish.nix b/home/fish.nix index 78bf6e55..ee0de642 100644 --- a/home/fish.nix +++ b/home/fish.nix @@ -7,7 +7,7 @@ shellInit = /* fish */ '' set -U fish_greeting "" - export PATH="$HOME/.deno/bin:$HOME/.cargo/bin:$HOME/.npm-packages/bin:$HOME/.local/bin:$PATH" + export PATH="$HOME/.cargo/bin:$HOME/.npm-packages/bin:$HOME/.local/bin:$PATH" export NODE_PATH="$HOME/.npm-packages/lib/node_modules" export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket" export TERMCMD="kitty --single-instance"