11 lines
209 B
Plaintext
11 lines
209 B
Plaintext
|
#!/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
|