Files
.dotfiles/sh/nackernvim
2025-08-03 18:32:49 -04:00

21 lines
302 B
Plaintext

#/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