6 lines
181 B
Bash
Executable File
6 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
DOTFILES=$(readlink -nf "$(dirname "$0")")
|
|
git -C "$DOTFILES" config core.hooksPath hooks
|
|
ln -sf "$DOTFILES/mksh/mkshrc" "$HOME/.mkshrc"
|
|
echo "dotfiles: linked ~/.mkshrc"
|