12 lines
276 B
Bash
Executable file
12 lines
276 B
Bash
Executable file
#!/bin/bash
|
|
# Setup script for vim & tmux
|
|
|
|
# Get the full path of the script
|
|
SCRIPT_PATH=`realpath $0`
|
|
|
|
# Remove the filename
|
|
DOTFILES=`dirname $SCRIPT`
|
|
|
|
mkdir $HOME/.vim
|
|
ln -sf $DOTFILES/{.bashrc,vim/.vimrc,.tmux.conf,.profile} $HOME/
|
|
ln -sf $DOTFILES/vim/colors $HOME/.vim/
|