diff --git a/home/.config/fish/config.fish b/home/.config/fish/config.fish index de6437a..921597a 100644 --- a/home/.config/fish/config.fish +++ b/home/.config/fish/config.fish @@ -1,11 +1,13 @@ +set -Ux XDG_CONFIG_HOME $HOME/.config + if status is-interactive # Commands to run in interactive sessions can go here source $XDG_CONFIG_HOME/sh/aliases.sh source $XDG_CONFIG_HOME/sh/path.sh # Per-host config - if test -r $XDG_CONFIG_HOME/sh/$HOSTNAME.sh - source $XDG_CONFIG_HOME/sh/$HOSTNAME.sh + if test -r $XDG_CONFIG_HOME/sh/per-host/$hostname.sh + source $XDG_CONFIG_HOME/sh/per-host/$hostname.sh end if type -q atuin @@ -20,4 +22,8 @@ if status is-interactive if type -q direnv direnv hook fish | source end + + if type -q eza + alias ls=eza + end end