mirror of
https://github.com/1xtier/.dotfiles.git
synced 2026-03-17 02:47:56 +00:00
21 lines
302 B
Plaintext
21 lines
302 B
Plaintext
#/bin/bash
|
|
function helpcli() {
|
|
echo "* install nackerNvim"
|
|
|
|
}
|
|
function 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
|