Compare commits

..

No commits in common. "b7e89027d89cefeeea6afe4a98d70cd01ac3ac2a" and "2cdd2427a22c4001df82dbe5b53232ac50eb53ba" have entirely different histories.

View file

@ -21,11 +21,12 @@ if [ -t 1 ]; then
else else
cat='cat' cat='cat'
fi fi
PATH="./${bin}:${PATH}" PATH="./${bin}:${PATH}"
EDITOR="${EDITOR:-nvim}" EDITOR="${EDITOR:-nvim}"
alias ls='ls --color=auto' alias ls='ls --color=auto'
shopt -s expand_aliases shopt -s expand_aliases
umask 027
perror() { perror() {
>&2 printf '\033[1;31mERROR:\033[0m \033[1m%s\033[0m\n' "$*" >&2 printf '\033[1;31mERROR:\033[0m \033[1m%s\033[0m\n' "$*"
@ -96,7 +97,7 @@ public_diskls() {
public_edit() { public_edit() {
local file="${bin}/${1}" local file="${bin}/${1}"
"$EDITOR" "$file" "$EDITOR" "$file"
exec chmod u+x "$file" exec chmod 740 "$file"
} }
public_rm() { public_rm() {