Compare commits

...

7 Commits

Author SHA1 Message Date
9142551060 Update early-init.zsh 2026-04-08 15:06:01 -07:00
a8a5aefec3 Add local-early.zsh support 2026-04-08 13:28:43 -07:00
fe6828a82e Update submodules 2026-04-05 18:32:21 -07:00
ecda31e120 Update submodules 2026-03-05 18:01:46 -08:00
c8f2c3b80e Fix aliases 2026-02-26 05:16:59 -08:00
39850fe666 Fix type in init.zsh 2026-02-24 19:02:01 -08:00
3b615b817b Update submodules 2026-02-19 20:01:55 -08:00
4 changed files with 24 additions and 17 deletions

View File

@@ -3,6 +3,11 @@ export PATH="${HOME}/.local/bin:${PATH}"
export LD_LIBRARY_PATH="${HOME}/.local/lib:${LD_LIBRARY_PATH}"
export PKG_CONFIG_PATH="${HOME}/.local/lib/pkgconfig:${PKG_CONFIG_PATH}"
# Make sure this is PATH
if [[ -d "${HOME}/.ghcup/bin" ]]; then
export PATH=":${HOME}/.ghcup/bin:${PATH}"
fi
# Because I use zsh to start graphical sessions
[[ -v ZSH_GRAPHICAL_LOGIN ]] || ZSH_GRAPHICAL_LOGIN=true
if [[ -o login ]] && [[ "${ZSH_GRAPHICAL_LOGIN}" = 'true' ]] ; then

View File

@@ -28,6 +28,8 @@ function source_user_file {
fi
}
# Mostly for setting $PATH before the GUI starts
source_user_file "local-early"
# Load user early init file
source_user_file "early-init"
@@ -152,7 +154,7 @@ if cmd_exists clash; then
alias tp="clash put"
alias trr="clash restore"
alias trl="clash list"
alias tre="clash emtpy"
alias tre="clash empty"
alias trm="clash empty"
elif cmd_exists trash-put; then
alias rm='echo "rm: I''m unsafe! Don''t use me."; false'