5 lines
112 B
Plaintext
5 lines
112 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cd ~/dev
|
||
|
cd $1 2>/dev/null && nvim . || ( ( cd ${1%/*} 2>/dev/null && nvim ${1##*/} ) || nvim $1 )
|