| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This repo contains info on all the apps/tools/settings I use for my macOS setup
I am using a 2020 MacBook Air for on-the-go and a 2024 M4 Mac Mini for at home.
The specs for both machines:
Read more about these Mac machines here:
These are my preferred settings for Desktop, Finder and the Dock.
I disable the Stage Manager and Widget features
I don't use the Dock at all. It takes up screen space, and I can use Alfred to launch apps and AltTab to switch between apps. I make the dock as small as possible and auto hide it.
The built in spotlight search is a bit slow for me and usually has web search results as the default instead of apps or folders on my machine.
brew install --cask raycastHomebrew allows us to install tools and apps from the command line.
To install it, open up the built in Terminal app and run this command:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"This will also install the xcode build tools which is needed by many other developer tools.
After Homebrew is done installing, we will use it to install everything else we need.
I use aerospace to move and resize windows using keyboard shortcuts.
Fluid and seamless window management is key to being productive while coding.
brew install --cask nikitabobko/tap/aerospaceThe built in App switcher only shows application icons, and only shows 1 icon per app regardless of how many windows you have open in that app.
I use an app switcher called AltTab. It shows full window previews, and has an option to show a preview for every open window in all applications (even minimized ones).
I replace the built-in CMD+TAB shortcut with AltTab.
brew install alt-tabI use stats to see my network traffic, CPU temp / usage and RAM usage at a glance.
In each widget, a key setting to look for is under "widget settings", choose "merge widgets into one".
brew install statsI like to have a calendar in the menu bar that I can quickly look at. stats does not include one, so I found itsycal.
brew install itsycalitsycal shows the date, so I hide the date in the system menu bar widget:
You can install them in one go by placing them all into a text file and then running brew install:
musescore discord vlc figma visual-studio-code sublime-text
xargs brew install < apps.txtI prefer ghostty because:
Checkout their documentation for more info on what Ghostty can do: Ghostty Docs
brew install Ghostty
Once installed, launch it and customize the settings to your liking. My preferred settings can be found in my dotfiles
Mac comes with zsh as the default shell.
As 'zsh' is POSIX compatible, and supports plugins. I find it familiar and convenient to use.
To see what shell is currently your default, run:
echo $SHELLI have a custom .zshrc with all of my custom settings and plugins including a customized prompt (using starship), aliases, colors and more.
I store my .zshrc file on github here so I can copy it over to any machine I'm setting up.
brew install cmatrix
brew install fortune
brew install cowsayWe can use brew to install the latest version of git:
git --version
brew install gitOpen a new tab / window to start using the latest version:
git --versionConfigure git with your name / email and preferred editor:
git config --global user.name kayleebeyene
git config --global user.email kaylee@null.computer
git config --global core.editor nvimbrew install ffmpeg
brew install imagemagickNeoVim is my preferred code editor.
You can view all of my NeoVim settings / plugins here
brew install neovim| Back | FazBrowse Home | New Git URL |