initial commit with most component ready.

This commit is contained in:
2025-10-10 14:55:43 +08:00
commit 3daa3b59bf
17 changed files with 1262 additions and 0 deletions

11
.zprofile Normal file
View File

@@ -0,0 +1,11 @@
# init at each startup
mkdir -p /tmp/$USER
#ln -sf /tmp/$UID $HOME/.tmp
[[ ! -L $HOME/.tmp ]] && rm -f $HOME/.tmp && ln -s /tmp/$USER $HOME/.tmp
# avoid dumplicate env appending.
[[ -f /run/user/$UID/.zshlogon ]] && return
touch /run/user/$UID/.zshlogon
export PATH="$HOME/.local/bin:$PATH"
export EDITOR=nano