10 lines
76 B
Plaintext
10 lines
76 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
TEMPDIR=$(mktemp -d)
|
||
|
|
||
|
git clone $1 $TEMPDIR
|
||
|
|
||
|
cd $TEMPDIR
|
||
|
|
||
|
nvim .
|