11 lines
209 B
Bash
Executable File
11 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# stands for Open Code like my code
|
|
|
|
selected_path="$(find ~/Code/ ~/.local/bin/ ~/.config/ -type d -not -path '*/\.git*' -print | fzf)"
|
|
|
|
if [ ! -z $selected_path ]
|
|
then
|
|
nvim "$selected_path"
|
|
fi
|