7 lines
94 B
Plaintext
7 lines
94 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
sel="$(find -L ~/.config 2>/dev/null | fzy)"
|
||
|
[ "$?" -eq 1 ] && exit 1
|
||
|
|
||
|
nvim "$sel"
|