diff --git a/bash/.bashrc.zima b/bash/.bashrc.zima index 38f9735..f8c383e 100644 --- a/bash/.bashrc.zima +++ b/bash/.bashrc.zima @@ -112,12 +112,10 @@ sf() { # fuzzy cd into specific folders fcd() { local selected_dir=$({ - echo "$HOME/.config/asa" - echo "$HOME/.config/alacritty" - echo "$HOME/.cache" - echo "$HOME/.cache/asadesuka" - echo "$HOME/Documents/Obsidian Vault" - find "/mnt/md0/ghqrdd" -mindepth 2 -maxdepth 2 -type d + echo "$HOME/Documents/Obsidian Vault" + find "$HOME/.config" -maxdepth 1 -type d + find "$HOME/.cache" -maxdepth 1 -type d + find "$HOME/ghq" -mindepth 2 -maxdepth 2 -type d ls -d -1 "$HOME/"/*/ | grep -v \.git } | fzf)