This commit is contained in:
= 2024-07-15 11:53:05 -06:00
parent 371ba36437
commit d4c8ac2e63
2 changed files with 11 additions and 0 deletions

View File

@ -18,6 +18,16 @@ alias_list=(
gs='git show --pretty=short'
gst='git status --short'
)
gc() {
git add --all
if [ -n "$1" ]
then
git commit --all --message "$1"
else
git commit -m update
fi
git push --verbose
}
for alias_def in "${alias_list[@]}"; do
alias $alias_def

View File

@ -51,6 +51,7 @@ setopt hist_ignore_dups
setopt hist_find_no_dups
setopt inc_append_history
setopt share_history
setopt auto_cd
# Completion styling
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'