From 81d1c0c17162656be9ae06638a11674144a4fc7f Mon Sep 17 00:00:00 2001 From: John Pham Date: Tue, 19 May 2015 18:27:42 -0400 Subject: [PATCH] Update link script and gitignore --- .config/fish/.gitignore | 1 + link.sh | 10 ++++++---- 2 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 .config/fish/.gitignore diff --git a/.config/fish/.gitignore b/.config/fish/.gitignore new file mode 100644 index 0000000..1dc8ed3 --- /dev/null +++ b/.config/fish/.gitignore @@ -0,0 +1 @@ +fish_history diff --git a/link.sh b/link.sh index 76d0fb6..2abf41d 100755 --- a/link.sh +++ b/link.sh @@ -1,6 +1,8 @@ -#! /bin/zsh +#! /bin/sh DOTFILES=`pwd` -ln -sf $DOTFILES/.vim* .. -ln -sf $DOTFILES/.zsh* .. -ln -sf $DOTFILES/.xprofile .. +ln -sf $DOTFILES/.vim* ~ +ln -sf $DOTFILES/.zsh* ~ +ln -sf $DOTFILES/.oh-my-* ~ +ln -sf $DOTFILES/.config/fish ~/.config +ln -sf $DOTFILES/.xprofile ~