Temporary Work Setup
As part of the various co-ops I’m completing for my degree, I find myself needing to set up MacOS several times, so here’s my work-in-progress list of extra terminal things to install. Admittedly I should have something more robust, but it gets by to start.
homebrew:
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh
brew install neovim
brew install --cask unnaturalscrollwheels
brew install --cask powershell
git config --global core.editor nvim
git config --global alias.st status
.zshrc:
# git autocomplete
autoload -Uz compinit
compinit
PowerShell:
Install-Module posh-git
# in $profile
Import-Module posh-git
function global:prompt {return "PS $($pwd.path.replace($home,"~"))"}