Skip to content

Commit

Permalink
Install .screenrc and .gitconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
ekashida committed Feb 4, 2016
1 parent c3c7e21 commit 581277a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions install.fish
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ begin
ln -sv $source $target
end

set source "$working_dir/screenrc"
set target "$HOME/.screenrc"
if not test -L $target
ln -sv $source $target
end

set source "$working_dir/gitconfig"
set target "$HOME/.gitconfig"
if not test -L $target
ln -sv $source $target
end

set source "$working_dir/vimrc"
set target "$HOME/.vimrc"
if not test -L $target
Expand Down

0 comments on commit 581277a

Please sign in to comment.