34 lines
661 B
Bash
Executable File
34 lines
661 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -f "$HOME/.vimrc" ]; then
|
|
# backup old file
|
|
mv "$HOME/.vimrc" "$HOME/.vimrc.old"
|
|
fi
|
|
|
|
ln -sf "`pwd`/.vimrc" "$HOME/.vimrc"
|
|
|
|
if [ -f "$HOME/.gitconfig" ]; then
|
|
# backup old file
|
|
mv "$HOME/.gitconfig" "$HOME/.gitconfig.old"
|
|
fi
|
|
|
|
ln -sf "`pwd`/.gitconfig" "$HOME/.gitconfig"
|
|
|
|
if [ -f "$HOME/.tmux.conf" ]; then
|
|
# backup old file
|
|
mv "$HOME/.tmux.conf" "$HOME/.tmux.conf.old"
|
|
fi
|
|
|
|
ln -sf "`pwd`/.tmux.conf" "$HOME/.tmux.conf"
|
|
|
|
if [ ! -d "$HOME/.ssh" ]; then
|
|
mkdir -p "$HOME/.ssh"
|
|
fi
|
|
|
|
if [ -f "$HOME/.ssh/config" ]; then
|
|
# backup old file
|
|
mv "$HOME/.ssh/config" "$HOME/.ssh/config.old"
|
|
fi
|
|
|
|
cp "`pwd`/.ssh/config" "$HOME/.ssh/config"
|