2024-04-23 13:46:16 +04:00

12 lines
239 B
Bash
Executable File

#!/bin/bash
# stands for fuzzy vim
selected_path="$(find ~/Code/ ~/.local/bin/ ~/.config/ -maxdepth 2 -type d -not -path '*/\.git*' -print | fzf)"
if [ ! -z "${selected_path}" ]
then
echo "${selected_path}"
nvim "${selected_path}"
fi