commit dd88439dbfee33fb28d3236fff751f25681ba5f8
parent e4e4abf7336a335e1b66a0a21ddb60bd3ee9a2a0
Author: GeaRSiX <gearsix@tuta.io>
Date: Tue, 18 May 2021 11:51:26 +0100
added alias l
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/bashrc b/src/bashrc
@@ -24,7 +24,7 @@ alias zyp="sudo zypper"
export PS1='\[${txtBold}\]\A \[${txtReset}${colGreen}\]\u\[${txtReset}\]@\[${colBlue}\]\h\[${txtReset}\][\[${colCyan}\]\w\[${txtReset}\]]: '
export ark=~/shares/ark/
export CC=gcc
- export PATH=$PATH:~/.bin:$HOME/build/go/bin:/usr/local/go/bin
+ export PATH=$PATH:~/.bin:~/.local/bin:$HOME/build/go/bin:/usr/local/go/bin
export MANWIDTH=75
export TERM=xterm-256color
export EDITOR=nvim
@@ -55,7 +55,8 @@ alias zyp="sudo zypper"
# alias logout='pkill -KILL -u $USER'
alias s!!='sudo !!'
alias ls='ls --color=auto'
- alias ll='ls -lha --color=auto' # list format, human-readable
+ alias l='ls -lh --color=auto' # list format, human-readable
+ alias ll='ls -lha --color=auto' # list format, human-readable, all
alias lla='ls -lAh --color=auto' # show almost all, human-readable
alias lsa='ls -Ah --color=auto' # list format, all, human-readable
alias llt='ls -lAht --color=auto' # list format, show almost all, human-readable, sort by modification time (newest first)