parent
222649c998
commit
6c18686f3f
|
@ -1,5 +1,5 @@
|
||||||
[user]
|
[user]
|
||||||
name = Les Vegetables
|
name = Matthew Jensen
|
||||||
email = "matt@happyhousemedia.com"
|
email = "matt@happyhousemedia.com"
|
||||||
[alias]
|
[alias]
|
||||||
lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
|
lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
|
||||||
|
|
8
init.sh
8
init.sh
|
@ -1,4 +1,4 @@
|
||||||
DOTFILE_DIR=$HOME/dotfiles
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||||||
rm $HOME/.vim/ -rf
|
rm $HOME/.vim/ -rf
|
||||||
rm $HOME/.vim/autoload/ -rf
|
rm $HOME/.vim/autoload/ -rf
|
||||||
rm $HOME/.vim/bundle/ -rf
|
rm $HOME/.vim/bundle/ -rf
|
||||||
|
@ -12,13 +12,13 @@ curl -LSso $HOME/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
|
||||||
git clone https://github.com/ctrlpvim/ctrlp.vim.git $HOME/.vim/bundle/ctrlp.vim
|
git clone https://github.com/ctrlpvim/ctrlp.vim.git $HOME/.vim/bundle/ctrlp.vim
|
||||||
git clone https://github.com/jpalardy/vim-slime.git $HOME/.vim/bundle/vim-slime
|
git clone https://github.com/jpalardy/vim-slime.git $HOME/.vim/bundle/vim-slime
|
||||||
|
|
||||||
cp $DOTFILE_DIR/dotfiles/.vimrc $HOME/.vimrc
|
cp -rf $DIR/dotfiles/.vimrc $HOME/.vimrc
|
||||||
echo ".vimrc copied"
|
echo ".vimrc copied"
|
||||||
|
|
||||||
cp $DOTFILE_DIR/dotfiles/.gitconfig $HOME/.gitconfig
|
cp $DIR/dotfiles/.gitconfig $HOME/.gitconfig
|
||||||
echo ".gitconfig copied"
|
echo ".gitconfig copied"
|
||||||
|
|
||||||
cp $DOTFILE_DIR/dotfiles/.bash_profile $HOME/.bash_profile
|
cp $DIR/dotfiles/.bash_profile $HOME/.bash_profile
|
||||||
echo ".bash_profile copied"
|
echo ".bash_profile copied"
|
||||||
|
|
||||||
source $HOME/.bash_profile
|
source $HOME/.bash_profile
|
||||||
|
|
Loading…
Reference in New Issue