https://github.com/ananta/dotfiles
ananta's mac dotfiles
https://github.com/ananta/dotfiles
fish git htop kitty macchina nvim omf tmux tmux-theme
Last synced: 24 days ago
JSON representation
ananta's mac dotfiles
- Host: GitHub
- URL: https://github.com/ananta/dotfiles
- Owner: ananta
- Created: 2021-07-20T04:44:32.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-11-29T23:12:58.000Z (over 1 year ago)
- Last Synced: 2025-04-06T03:58:20.525Z (about 1 month ago)
- Topics: fish, git, htop, kitty, macchina, nvim, omf, tmux, tmux-theme
- Language: Lua
- Homepage:
- Size: 2.74 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ananta's dotfiles

## Steps to bootstrap a new Mac
1. Install Apple's Command Line Tools, which are prerequisites for Git and Homebrew.
```bash
xcode-select --install
```2. Clone repo into new hidden directory.
```bash
# Use SSH (if set up)...
git clone [email protected]:ananta/dotfiles.git ~/.dotfiles# ...or use HTTPS and switch remotes later.
git clone https://github.com/ananta/dotfiles.git ~/.dotfiles
```3. Install Homebrew, followed by the software listed in the Brewfile.
```bash
# These could also be in an install script.# Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"# Then pass in the Brewfile location...
brew bundle --file ~/.dotfiles/Brewfile# ...or move to the directory first.
cd ~/.dotfiles && brew bundle
```4. Run `stow` to symlink everything or just select what you want
```bash
stow */ # Everything (the '/' ignores the README)
``````bash
stow tmux # Just my tmux config
```## Programs
An updated list of all the programs I use can be found in the `BrewFile`.