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.
This commit is contained in:
Donovan Glover 2024-05-12 10:39:48 -04:00
parent 5cc8a9002f
commit 2bd7a0cef9
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -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"