mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-08 04:34:00 +02:00
Added dot-env plugin
Dot-env is a cross-platform, cascading Zsh environment system for those who work on different hardware and OS environments. See: https://github.com/midwire/.env
This commit is contained in:
parent
f4944d5a95
commit
ae2db75f3e
20 changed files with 629 additions and 0 deletions
14
plugins/dot-env/global/alias/ls.sh
Normal file
14
plugins/dot-env/global/alias/ls.sh
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Directory Listing aliases
|
||||
alias dir='ls -hFx'
|
||||
alias l.='ls -d .* --color=tty'
|
||||
alias l='ls -lathF'
|
||||
alias L='ls -latrhF'
|
||||
alias la='ls -Al' # show hidden files
|
||||
alias lc='ls -lcr' # sort by change time
|
||||
alias lk='ls -lSr' # sort by size
|
||||
alias ll='ls -lFh'
|
||||
alias lm='ls -al |more' # pipe through 'more'
|
||||
alias lo='ls -laSFh'
|
||||
alias lr='ls -lR' # recursive ls
|
||||
alias lt='ls -ltr' # sort by date
|
||||
alias lu='ls -lur' # sort by access time
|
||||
Loading…
Add table
Add a link
Reference in a new issue