15 lines
374 B
Bash
Executable File
15 lines
374 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Emacs configuration
|
|
ln -f -s $(pwd)/.emacs.d $HOME/
|
|
|
|
# Shell configurations
|
|
ln -f -s $(pwd)/.bashrc $HOME/
|
|
# ln -f -s $(pwd)/.zshrc $HOME/
|
|
# ln -f -s $(pwd)/.oh-my-zsh $HOME/
|
|
# ln -f -s $(pwd)/zsh-custom $HOME/.config/zsh-custom
|
|
ln -f -s $(pwd)/fish $HOME/.config
|
|
|
|
ln -f -s $(pwd)/alias.sh $HOME/.config
|
|
ln -f -s $(pwd)/path.sh $HOME/.config
|