dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit c719595d85adc55a254315d7c7f96ffe7f5f675d (patch)
parent 809b84029d102db1e82b8cc30ed5f15542982f3b
Author: Alex Karle <alex@karle.co>
Date:   Sun, 25 Aug 2019 23:30:25 -0400

bin: small updates to install.sh

I am now thinking that the best way to do this is to git clone the
dotfiles repo oneself, then let install setup vim/dotfiler/symlinks.

This is easier, since I can never remember the url for the raw blob for
curl :)

Diffstat:
Minstall.sh | 9++++-----
1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/install.sh b/install.sh @@ -7,15 +7,14 @@ if ! [ -x "$(command -v git)" ]; then exit 1 fi +mkdir -p $HOME/.config mkdir -p $HOME/dev/proj echo "Installing dotvim -> $HOME/.vim" -git clone --recursive https://github.com/akarle/dotvim $HOME/.vim +git clone --recursive https://github.com/akarle/dotvim $HOME/.vim || exit 1 echo "Installing dotfiler -> $HOME/dev/proj/dotfiler" -git clone https://github.com/akarle/dotfiler $HOME/dev/proj/dotfiler -echo "Installing dotfiles -> $HOME/dev/dotfiles" -git clone https://github.com/akarle/dotfiles $HOME/dev/dotfiles +git clone https://github.com/akarle/dotfiler $HOME/dev/proj/dotfiler || exit 1 echo "Using dotfiler to link bash (bare minimum)" PATH=$HOME/dev/proj/dotfiler:$PATH -dotfiler.pl -d $HOME/dev/dotfiles -l bash +dotfiler.pl -d $HOME/dev/dotfiles -l bash tmux