https://github.com/barnes-c/dotfiles
Personal dotfiles for configuration of my Mac
https://github.com/barnes-c/dotfiles
brew dotbot dotfiles dotfiles-macos macos zsh
Last synced: 2 months ago
JSON representation
Personal dotfiles for configuration of my Mac
- Host: GitHub
- URL: https://github.com/barnes-c/dotfiles
- Owner: barnes-c
- License: other
- Created: 2025-02-06T13:07:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2026-01-31T20:13:59.000Z (5 months ago)
- Last Synced: 2026-02-01T08:07:28.643Z (5 months ago)
- Topics: brew, dotbot, dotfiles, dotfiles-macos, macos, zsh
- Language: Ruby
- Homepage: https://barnes.biz
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotfiles
This repository contains my personal dotfiles for configuring my MacOS devices. It includes settings for Zsh, Homebrew, Git, and other tools.
## Install
Running the [`install`](https://github.com/barnes-c/dotfiles/blob/master/install) script will link files from this repository to your `$HOME`. It will also export all installed brew formulas, casks and taps.
### oh-my-zsh
To install the plugins for oh-my-zsh run:
```bash
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git \
${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions \
${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-completions \
${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-completions
```
### Installing brew
To install the brew formulas, casks and taps run following command:
```bash
brew bundle --file ./Brewfile
```
and to update the Brewfile you can export it with:
```bash
brew bundle dump --describe --force
```
## License
- This repository is licensed under the [GNU AGPLv3](https://github.com/barnes-c/dotfiles/blob/master/LICENSE).