From 25a784f6b6b886f81675bfbf95ca72393a862ed9 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Sun, 4 Apr 2021 10:46:29 -0500 Subject: [PATCH] Fixing slowdown in fish due to the path. --- .config/fish/config.fish | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 6746609..0b48323 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -6,9 +6,13 @@ # # My fish config. Not much to see here; just some pretty standard stuff. -### EXPORT ### +### ADDING TO THE PATH +# First line removes the path; second line sets it. Without the first line, +# your path gets massive and fish becomes very slow. set -e fish_user_paths set -U fish_user_paths $HOME/.local/bin $HOME/Applications $fish_user_paths + +### EXPORT ### set fish_greeting # Supresses fish's intro message set TERM "xterm-256color" # Sets the terminal type set EDITOR "emacsclient -t -a ''" # $EDITOR use Emacs in terminal