mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-06 02:51:32 +01:00
updates
This commit is contained in:
parent
e47ef872e3
commit
a452b7a9f1
15 changed files with 768 additions and 3574 deletions
28
alias-ls.sh
28
alias-ls.sh
|
|
@ -17,25 +17,27 @@
|
|||
|
||||
# NEW SKOOL LS ALIASES
|
||||
######################
|
||||
# TODO alias lgr="exa $COMMON_EXA_PARAMS | grep -Ei 'Permissions Size|;'
|
||||
COMMON_EXA_PARAMS=" --long --header --icons --git --all "
|
||||
alias l="exa $COMMON_EXA_PARAMS --group --group-directories-first --time-style long-iso --git --git-ignore"
|
||||
alias ls1="exa $COMMON_EXA_PARAMS --oneline --group-directories-first"
|
||||
alias ls-tree="exa $COMMON_EXA_PARAMS --tree"
|
||||
alias lrt="exa $COMMON_EXA_PARAMS --sort newest"
|
||||
alias lsd="exa $COMMON_EXA_PARAMS --only-dirs"
|
||||
# TODO alias lgr="eza $COMMON_EZA_PARAMS | grep -Ei 'Permissions Size|;'
|
||||
COMMON_EZA_PARAMS=" --long --header --icons --git --all --time-style long-iso --no-quotes"
|
||||
alias l="eza $COMMON_EZA_PARAMS --group --group-directories-first --time-style long-iso --git "
|
||||
alias ls1="eza $COMMON_EZA_PARAMS --oneline --group-directories-first"
|
||||
alias ls-tree="eza $COMMON_EZA_PARAMS --tree"
|
||||
alias tree-ls="eza $COMMON_EZA_PARAMS --tree"
|
||||
alias lrt="eza $COMMON_EZA_PARAMS --sort newest"
|
||||
alias lsd="eza $COMMON_EZA_PARAMS --only-dirs"
|
||||
|
||||
# PSK 07-09-2022 undoing exa as it's hanging for ages on attached volumes
|
||||
alias exa-default="exa $COMMON_EXA_PARAMS"
|
||||
alias l="exa-default "
|
||||
alias lf="exa-default | grep -v /" # list files only
|
||||
alias lgr='l | grep -i ' # ls grep
|
||||
# PSK 07-09-2022 undoing eza as it's hanging for ages on attached volumes
|
||||
alias eza-default="eza $COMMON_EZA_PARAMS"
|
||||
# alias l="eza-default "
|
||||
alias ls="eza"
|
||||
alias lf="eza-default | grep -v /" # list files only
|
||||
alias lgr='l | grep -i ' # ls grep
|
||||
alias lhx="ls ~"
|
||||
alias list-aliases=n-aliases # wot about my aliases?
|
||||
alias list-functions=n-functions # wot about my functions?
|
||||
alias list-javas="l ~/.jenv/versions" # where the fuck is my javas?
|
||||
alias list-themes="cat ${HOME}/.zsh_favlist" # oh-my-zsh stuff
|
||||
alias ll="exa-default -t modified | tail -1" # list last file
|
||||
alias ll="eza-default -t modified | tail -1" # list last file
|
||||
alias lla='ls -lat'
|
||||
alias llf="clf"
|
||||
alias lock="/System/Library/CoreServices/Menu\ Extras/User.menu/Contents/Resources/CGSession -suspend"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue