Skip to content

Instantly share code, notes, and snippets.

@ldvc
Last active October 30, 2018 07:37
Show Gist options
  • Save ldvc/a28319d73c2eb39b3e8e3a1a5b2296d2 to your computer and use it in GitHub Desktop.
Save ldvc/a28319d73c2eb39b3e8e3a1a5b2296d2 to your computer and use it in GitHub Desktop.
Some post installation tasks after installing MacOS Mojave

As admin user:

sudo scutil --set ComputerName "myHostname"
sudo scutil --set LocalHostName "myHostname"
sudo scutil --set HostName "myHostname"

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install tig
brew cask install iterm2
brew cask install alfred
brew cask install spotify
brew cask install enpass
brew cask install cyberduck
brew cask install vlc
brew install htop
brew cask install chromium
brew cask install keka
brew cask install libreoffice
brew install jq

As jdoe user:

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
defaults write com.apple.CrashReporter DialogType none
mkdir -p ~/.vim/pack/git-plugins/start
git clone https://github.com/w0rp/ale.git ~/.vim/pack/git-plugins/start/ale
mkdir -p ~/.vim/colors/
curl https://raw.githubusercontent.com/sjl/badwolf/master/colors/badwolf.vim -O ~/.vim/colors/badwolf.vim
mkdir -p ~/.vim/pack/dist/start/
git clone https://github.com/vim-airline/vim-airline ~/.vim/pack/dist/start/vim-airline
vim .vimrc
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment