From b0296177f6150d6a22b624be483d9ec9e838c2b6 Mon Sep 17 00:00:00 2001 From: Andrei Stoica Date: Thu, 26 Sep 2024 16:06:40 -0400 Subject: [PATCH] added flutter nvim config and folder to alias --- .aliases | 3 --- 1 file changed, 3 deletions(-) diff --git a/.aliases b/.aliases index 52046b2..275ee3b 100644 --- a/.aliases +++ b/.aliases @@ -6,10 +6,7 @@ function sb() { cd $HOME/second-brain/; git pull; nvim; git add .; git commit; g ## Open work folder with fuzzy finder function work() { work_dirs=( "$HOME/clones" "$HOME/sandbox" "$HOME/TA/" ) - echo $work_dirs - echo "------" work_dirs=( $(find $work_dirs -maxdepth 0 -type d 2> /dev/null) ) - echo $work_dirs goto="" if [ ! -z $1 ]; then goto=$(find $work_dirs -maxdepth 1 -mindepth 1 -type d | fzf -f $1)