sutff
This commit is contained in:
parent
df69bdbf34
commit
14597de407
|
@ -0,0 +1,10 @@
|
|||
#!/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
|
Loading…
Reference in New Issue