- Shell Scripts: FZF function to fuzzy find all of my projects and open nvim on that project

- Shell Scripts: WIP efforts to comply all to POSIX
This commit is contained in:
Pratik Tripathy
2024-02-06 23:17:01 +05:30
parent 5fa524dd1d
commit 6b2d076cdc
10 changed files with 146 additions and 2636 deletions

View File

@@ -3,7 +3,7 @@
# Directories and Directory listings
dir_size() {
local dir
if [[ -z "$1" ]]; then
if [ -z "$1" ]; then
dir="${PWD}"
else
dir="$1"
@@ -13,4 +13,4 @@ dir_size() {
}
# Update & Upgrades
alias up="brew upgrade --cask && brew upgrade --formula && brew autoremove && rustup update && npm update -g"
alias up="brew upgrade --cask && brew upgrade --formula && brew autoremove && brew cleanup && rustup update && npm update -g"