17 lines
280 B
Bash
Executable File
17 lines
280 B
Bash
Executable File
alias gpg='gpg2'
|
|
export GPG_TTY=$(tty)
|
|
|
|
alias vim=nvim
|
|
alias gca='git commit --amend --no-edit'
|
|
alias gpf='git push --force-with-lease'
|
|
alias gs='git show'
|
|
alias gd='git diff'
|
|
|
|
if [ -e "$HOME/.kshrc_private" ]; then
|
|
. "$HOME/.kshrc_private"
|
|
fi
|
|
|
|
set -o emacs
|
|
|
|
PS1='${PWD##*/} $ '
|