Dotfiles for my Mac machines
Install homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"This repo has two main folders.
brewfiles holds the list of programs used to quickly install using homebrew.
cd ~/mac-dotfiles/brewfiles
brew bundle install --file brewfilestow Which holds all the config files. It can be used with the following command:
cd ~/mac-dotfiles/stow
stow .├── aerospace
│ ├── aerospace.toml
│ └── chat-aerospace.toml
├── brewfiles
│ └── brewfile
├── kitty
│ └── kitty.conf
├── nvim
│ ├── init.lua
│ └── lua
│ ├── colorscheme.lua
│ ├── markdown.lua
│ ├── obsidian.lua
│ └── plugins
├── raycast
├── README.md
├── scripts
│ └── install.sh
├── tmux
│ └── tmux.conf
├── vscode
│ ├── keybindings.json
│ └── settings.json
└── zshrcTo install all the programs from the brew file:
brew bundle --file .dotfiles/brewfile