Updated config

This commit is contained in:
Eduard Urbach 2025-05-17 17:12:25 +02:00
parent 6cb79f594a
commit 10baa6f6bb
Signed by: eduard
GPG key ID: 49226B848C78F6C8
7 changed files with 53 additions and 25 deletions

View file

@ -1,7 +1,14 @@
# Interactive mode
if status is-interactive
source $HOME/.config/fish/alias.fish
set -x LS_COLORS di=0:ln=0:so=0:pi=0:ex=0:bd=0:cd=0:su=0:sg=0:tw=0:ow=0
end
# PATH: Add scripts
fish_add_path $XDG_CONFIG_HOME/fish/scripts
# PATH: Add Go binaries
if command -q go
fish_add_path (go env GOPATH)/bin
end
# Load systemd user environment
@ -9,8 +16,4 @@ set GENERATOR /usr/lib/systemd/user-environment-generators/30-systemd-environmen
if test -e $GENERATOR
export ($GENERATOR)
end
# Add to PATH
fish_add_path (go env GOPATH)/bin
fish_add_path $XDG_CONFIG_HOME/fish/scripts
end