9 lines
76 B
Bash
Executable file
9 lines
76 B
Bash
Executable file
#!/bin/sh
|
|
|
|
TEMPDIR=$(mktemp -d)
|
|
|
|
git clone $1 $TEMPDIR
|
|
|
|
cd $TEMPDIR
|
|
|
|
nvim .
|