diff options
author | xengineering <mail2xengineering@protonmail.com> | 2020-07-30 21:21:03 +0200 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2020-07-30 21:21:03 +0200 |
commit | 3b5cdbb0a839cf93235cdaee19c0bcaffba53759 (patch) | |
tree | 271bce1be1f71b196526148a6a07c866f66398f6 | |
parent | d899595fb46fa3814bea402412cb4111085b594e (diff) | |
download | dotfiles-3b5cdbb0a839cf93235cdaee19c0bcaffba53759.tar dotfiles-3b5cdbb0a839cf93235cdaee19c0bcaffba53759.tar.zst dotfiles-3b5cdbb0a839cf93235cdaee19c0bcaffba53759.zip |
Update .bashrc
-rw-r--r-- | .bashrc | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -6,5 +6,14 @@ [[ $- != *i* ]] && return alias ls='ls --color=auto' +alias ll='ls -alF' +alias la='ls -A' +alias l='ls -CF' +alias dot='/usr/bin/git --git-dir=$HOME/dotfiles.git/ --work-tree=$HOME' +alias commit='git commit' +alias gitstat='git status' + +PATH=$PATH:~/bin + PS1='[\u@\h \W]\$ ' |