Compare commits
No commits in common. "b7e89027d89cefeeea6afe4a98d70cd01ac3ac2a" and "2cdd2427a22c4001df82dbe5b53232ac50eb53ba" have entirely different histories.
b7e89027d8
...
2cdd2427a2
1 changed files with 3 additions and 2 deletions
|
@ -21,11 +21,12 @@ if [ -t 1 ]; then
|
|||
else
|
||||
cat='cat'
|
||||
fi
|
||||
|
||||
PATH="./${bin}:${PATH}"
|
||||
EDITOR="${EDITOR:-nvim}"
|
||||
|
||||
alias ls='ls --color=auto'
|
||||
shopt -s expand_aliases
|
||||
umask 027
|
||||
|
||||
perror() {
|
||||
>&2 printf '\033[1;31mERROR:\033[0m \033[1m%s\033[0m\n' "$*"
|
||||
|
@ -96,7 +97,7 @@ public_diskls() {
|
|||
public_edit() {
|
||||
local file="${bin}/${1}"
|
||||
"$EDITOR" "$file"
|
||||
exec chmod u+x "$file"
|
||||
exec chmod 740 "$file"
|
||||
}
|
||||
|
||||
public_rm() {
|
||||
|
|
Loading…
Reference in a new issue