Compare commits
21 Commits
99a96e39fc
...
71f3ed8947
Author | SHA1 | Date |
---|---|---|
urosm | 71f3ed8947 | |
urosm | a2871abff3 | |
urosm | d453810eaa | |
urosm | 998ea6e42a | |
urosm | cc66118772 | |
urosm | eddb9a8fff | |
urosm | 75fa902bfa | |
urosm | 8dc65c8ed9 | |
urosm | 1c7cebe96d | |
urosm | e2a38aa745 | |
urosm | 1c1b7ead4b | |
urosm | 49afab4b07 | |
urosm | 1711a33d64 | |
urosm | 1420473a3b | |
urosm | 81d284d259 | |
urosm | e4ee10e911 | |
urosm | 319a5cba72 | |
urosm | 3d095f3875 | |
urosm | 02ff07a144 | |
urosm | d3e7ca8946 | |
urosm | 90c1c701ee |
8
.bashrc
8
.bashrc
|
@ -26,7 +26,7 @@ PS1="\[\e]0;\u@\h: \w\a\]$PS1"
|
|||
# functions
|
||||
# stat
|
||||
st() {
|
||||
find "${1-.}" -mindepth 0 -maxdepth 1 -printf '%m %u %g %Y %p\n' |
|
||||
find "${1-.}" -maxdepth 1 -printf '%m %u %g %y %P\n' |
|
||||
sort -V -k 4,5 | column -t -N 'i,u,g,t,n' -R 'i,u' -d
|
||||
}
|
||||
|
||||
|
@ -36,11 +36,11 @@ alias q="exit"
|
|||
alias :q="exit"
|
||||
|
||||
# grep
|
||||
alias grep="grep --color=auto"
|
||||
alias grep="grep --color"
|
||||
|
||||
# ls
|
||||
alias ls="ls --color=auto"
|
||||
alias ll="ls --group-directories-first -A1v"
|
||||
alias ls="ls --color"
|
||||
alias ll="ls -AFv1 --group-directories-first"
|
||||
|
||||
# nvim
|
||||
alias :e="nvim"
|
||||
|
|
Loading…
Reference in New Issue