This commit is contained in:
2025-08-03 18:32:49 -04:00
parent ecccde6393
commit 2fb295ad74
2 changed files with 21 additions and 1 deletions

20
sh/nackernvim Normal file
View File

@@ -0,0 +1,20 @@
#/bin/bash
function helpcli() {
echo "* install nackerNvim"
}
fucntion install() {
cd ~/.dotfiles
git submodule init
git submodule update
ln -s $HOME/.dotfiles/nackernvim $HOME/.config/nvim
}
while [ -n "$1" ]
do
case "$1" in
install )start;;
help )helpcli;;
esac
shift
done