#!/bin/bash
function linker {
    echo "Creating $1"

    if [ -f $1 ] 
    then  
        rm $1 
    fi
    ln -s conf/$1 $1
}


cd ~

# create links to the conf files I need
linker .vi_help 
linker .bashrc
linker .exrc
linker .vimrc


