Merge from titus #3

Merged
jiriks74 merged 14 commits from master into titusupdate 2021-11-14 19:08:52 +01:00
2 changed files with 10 additions and 11 deletions
Showing only changes of commit 27673fd6cb - Show all commits

1
.zshrc

@ -11,7 +11,6 @@ fi
# zsh-autosuggestions - Suggestions based on your history # zsh-autosuggestions - Suggestions based on your history
# Initial Setup # Initial Setup
# mkdir -p "$HOME/zsh/.zsh"
# touch "$HOME/.cache/zshhistory # touch "$HOME/.cache/zshhistory
# Setup Alias in $HOME/zsh/aliasrc # Setup Alias in $HOME/zsh/aliasrc
# git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k # git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k

20
aliasrc

@ -28,18 +28,18 @@ export EDITOR=vim
alias pacman-update='sudo pacman-mirrors --geoip' alias pacman-update='sudo pacman-mirrors --geoip'
alias ls='ls --color=auto' alias ls='ls'
alias ll='ls -l' alias ll='ls -l'
# ls, the common ones I use a lot shortened for rapid fire usage # ls, the common ones I use a lot shortened for rapid fire usage
alias l='ls -lFh --color=auto' #size,show type,human readable alias l='ls -lFh' #size,show type,human readable
alias la='ls -lAFh --color=auto' #long list,show almost all,show type,human readable alias la='ls -lAFh' #long list,show almost all,show type,human readable
alias lr='ls -tRFh --color=auto' #sorted by date,recursive,show type,human readable alias lr='ls -tRFh' #sorted by date,recursive,show type,human readable
alias lt='ls -ltFh --color=auto' #long list,sorted by date,show type,human readable alias lt='ls -ltFh' #long list,sorted by date,show type,human readable
alias ll='ls -l --color=auto' #long list alias ll='ls -l' #long list
alias ldot='ls -ld .* --color=auto' alias ldot='ls -ld .*'
alias lS='ls -1FSsh --color=auto' alias lS='ls -1FSsh'
alias lart='ls -1Fcart --color=auto' alias lart='ls -1Fcart'
alias lrt='ls -1Fcrt --color=auto' alias lrt='ls -1Fcrt'
alias zshrc='${=EDITOR} ~/.zshrc' # Quick access to the ~/.zshrc file alias zshrc='${=EDITOR} ~/.zshrc' # Quick access to the ~/.zshrc file