mirror of https://github.com/einverne/dotfiles.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1004 B
47 lines
1004 B
4 years ago
|
#!/usr/bin/env bash
|
||
|
# https://github.com/crispgm/dotfiles/blob/master/bootstrap
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo "Install Homebrew"
|
||
|
if test ! $(which brew); then
|
||
|
echo "Installing homebrew..."
|
||
|
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
||
|
fi
|
||
|
|
||
|
echo "Setup hostname"
|
||
|
sudo scutil --set HostName mac
|
||
|
|
||
|
echo "Install with Brew Bundle"
|
||
|
set +e
|
||
4 years ago
|
brew cleanup
|
||
|
brew uninstall openssl
|
||
4 years ago
|
brew bundle
|
||
|
set -e
|
||
|
|
||
|
echo "Setup workspace"
|
||
2 years ago
|
mkdir -p ~/Git/
|
||
4 years ago
|
|
||
|
echo "Setup Git"
|
||
2 years ago
|
ln -s ./git/work.gitconfig ~/Git/.gitconfig
|
||
4 years ago
|
if [ -f $HOME/.gitconfig ]; then
|
||
|
cat $HOME/.gitconfig
|
||
|
mv $HOME/.gitconfig $HOME/.gitconfig.bak
|
||
|
fi
|
||
|
ln -s $PWD/git/global.gitconfig $HOME/.gitconfig
|
||
|
|
||
|
# echo "Setup Bash"
|
||
|
# sudo cp ./motd /etc/motd
|
||
|
# cp ./bash/.bashrc ~/.bashrc
|
||
|
# cp ./bash/.bash_profile ~/.bash_profile
|
||
|
|
||
|
echo "Setup Zsh"
|
||
|
sudo sh -c 'echo /usr/local/bin/zsh >> /etc/shells'
|
||
|
sudo chsh -s $(which zsh)
|
||
|
|
||
|
echo "Setup applications"
|
||
|
echo "- fzf"
|
||
|
$(brew --prefix)/opt/fzf/install
|
||
|
# echo "- neovim"
|
||
|
# ./neovim/neovim
|