Files
.dotfiles/sh/nackernvim

21 lines
304 B
Plaintext
Raw Normal View History

2025-08-03 18:32:49 -04:00
#/bin/bash
function helpcli() {
echo "* install nackerNvim"
}
2025-08-03 18:34:42 -04:00
function install() {
2025-08-03 18:32:49 -04:00
cd ~/.dotfiles
git submodule init
git submodule update
ln -s $HOME/.dotfiles/nackernvim $HOME/.config/nvim
}
while [ -n "$1" ]
do
case "$1" in
2025-08-03 18:37:50 -04:00
install )install;;
2025-08-03 18:32:49 -04:00
help )helpcli;;
esac
shift
done