This commit is contained in:
NaiJi ✨ 2024-04-23 08:52:28 +04:00
parent df69bdbf34
commit 14597de407
1 changed files with 10 additions and 0 deletions

10
.local/bin/fzvim Executable file
View File

@ -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