From 27673fd6cb6772e31a2eaff237add82983bf61e0 Mon Sep 17 00:00:00 2001 From: ChrisTitusTech Date: Wed, 8 Jul 2020 22:48:39 -0500 Subject: [PATCH] macOS changes --- .zshrc | 1 - aliasrc | 20 ++++++++++---------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.zshrc b/.zshrc index 173dbab..cd0ce4d 100644 --- a/.zshrc +++ b/.zshrc @@ -11,7 +11,6 @@ fi # zsh-autosuggestions - Suggestions based on your history # Initial Setup -# mkdir -p "$HOME/zsh/.zsh" # touch "$HOME/.cache/zshhistory # Setup Alias in $HOME/zsh/aliasrc # git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k diff --git a/aliasrc b/aliasrc index a9d881f..df018b1 100644 --- a/aliasrc +++ b/aliasrc @@ -28,18 +28,18 @@ export EDITOR=vim alias pacman-update='sudo pacman-mirrors --geoip' -alias ls='ls --color=auto' +alias ls='ls' alias ll='ls -l' # 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 la='ls -lAFh --color=auto' #long list,show almost all,show type,human readable -alias lr='ls -tRFh --color=auto' #sorted by date,recursive,show type,human readable -alias lt='ls -ltFh --color=auto' #long list,sorted by date,show type,human readable -alias ll='ls -l --color=auto' #long list -alias ldot='ls -ld .* --color=auto' -alias lS='ls -1FSsh --color=auto' -alias lart='ls -1Fcart --color=auto' -alias lrt='ls -1Fcrt --color=auto' +alias l='ls -lFh' #size,show type,human readable +alias la='ls -lAFh' #long list,show almost all,show type,human readable +alias lr='ls -tRFh' #sorted by date,recursive,show type,human readable +alias lt='ls -ltFh' #long list,sorted by date,show type,human readable +alias ll='ls -l' #long list +alias ldot='ls -ld .*' +alias lS='ls -1FSsh' +alias lart='ls -1Fcart' +alias lrt='ls -1Fcrt' alias zshrc='${=EDITOR} ~/.zshrc' # Quick access to the ~/.zshrc file