diff --git a/home/.config/bash/aliases.sh b/home/.config/bash/aliases.sh deleted file mode 100644 index c4c4c1b..0000000 --- a/home/.config/bash/aliases.sh +++ /dev/null @@ -1,3 +0,0 @@ -if command -v eza >/dev/null; then - alias ls="eza" -fi diff --git a/home/.config/bash/config.sh b/home/.config/bash/config.sh index bbfda12..340914c 100644 --- a/home/.config/bash/config.sh +++ b/home/.config/bash/config.sh @@ -4,4 +4,3 @@ if [ -r $XDG_CONFIG_HOME/sh/$HOSTNAME.sh ]; then source $XDG_CONFIG_HOME/sh/$HOSTNAME.sh fi source $XDG_CONFIG_HOME/bash/hooks.sh -source $XDG_CONFIG_HOME/bash/aliases.sh diff --git a/home/.config/bash/hooks.sh b/home/.config/bash/hooks.sh index c624f85..4ddddee 100644 --- a/home/.config/bash/hooks.sh +++ b/home/.config/bash/hooks.sh @@ -10,7 +10,7 @@ fi # Launch atuin if it is installed if command -v atuin >/dev/null; then - source <(atuin init bash) + eval "$(atuin init bash)" fi # Init zoxide if present and alias cd to it diff --git a/home/.config/git/ignore b/home/.config/git/ignore index 3e840e9..de033e6 100644 --- a/home/.config/git/ignore +++ b/home/.config/git/ignore @@ -2,5 +2,3 @@ /.helix /.settings /.classpath -/.cache -/compile_commands.json diff --git a/home/.config/sh/openchip.sh b/home/.config/sh/openchip.sh index 8b1dc79..b120aba 100644 --- a/home/.config/sh/openchip.sh +++ b/home/.config/sh/openchip.sh @@ -1,3 +1,8 @@ +echo Loading Openchip config + +# LLVM +export PATH="/work1/rpaquet/llvm-project/build/bin:$PATH" + # Other binaries export PATH="/work1/rpaquet/bin:$PATH" diff --git a/home/.config/sh/path.sh b/home/.config/sh/path.sh index 197c20c..c41beec 100644 --- a/home/.config/sh/path.sh +++ b/home/.config/sh/path.sh @@ -2,5 +2,3 @@ # Personnal scripts export PATH="$PATH:$HOME/bin" - -export PATH="$PATH:$HOME/.local/bin"