7 lines
97 B
Bash
7 lines
97 B
Bash
|
#!/bin/bash
|
||
|
pushd $PWD/..
|
||
|
if [ ! -d ~/.config/nvim ]; then
|
||
|
ln -s $PWD ~/.config/nvim
|
||
|
fi
|
||
|
popd
|