- known dependencies - lessen symlink checking (might not easily break) - move shell history into `/tmp`. (py didn't often operate filesystem which doesn't matter)
14 lines
302 B
Bash
14 lines
302 B
Bash
# init at each startup
|
|
mkdir -p /tmp/$USER/PSReadLine
|
|
#ln -sf /tmp/$USER $HOME/.tmp
|
|
|
|
# avoid dumplicate env appending.
|
|
# [[ -f /run/user/$UID/.zshlogon ]] && return
|
|
# touch /run/user/$UID/.zshlogon
|
|
|
|
PATH="$HOME/.local/bin:$PATH"
|
|
PATH="$HOME/.niri-dotfiles/bin:$PATH"
|
|
|
|
export -U PATH
|
|
export EDITOR=nano
|