10 lines
246 B
Bash
10 lines
246 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -e
|
||
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
||
|
|
|
||
|
|
ln -sf "$DIR/tmux.conf" ~/.tmux.conf
|
||
|
|
ln -sf "$DIR/gitconfig" ~/.gitconfig
|
||
|
|
|
||
|
|
echo "source $DIR/aliases.sh" >> ~/.bashrc 2>/dev/null || true
|
||
|
|
echo "Done. Restart your shell or: source ~/.bashrc"
|