10 lines
264 B
Bash
Executable file
10 lines
264 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#MISE description="Symlink Dotfiles"
|
|
echo .gitconfig
|
|
ln -sf "$(pwd)/.gitconfig" ~/.gitconfig
|
|
|
|
echo ".zshrc (with oh-my-zsh)"
|
|
ln -sf "$(pwd)/.zshrc" ~/.zshrc
|
|
|
|
echo "config.ghostty"
|
|
ln -sf "$(pwd)/config.ghostty" ~/.config/ghostty/config.ghostty
|