https://github.com/codebycorey/.dotfiles
Personal .dotfile and shell configurations that are easily shared across multiple environments.
https://github.com/codebycorey/.dotfiles
dotfiles macos shell zshrc
Last synced: 4 months ago
JSON representation
Personal .dotfile and shell configurations that are easily shared across multiple environments.
- Host: GitHub
- URL: https://github.com/codebycorey/.dotfiles
- Owner: codebycorey
- License: mit
- Created: 2016-08-05T18:11:07.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2025-08-18T18:59:33.000Z (10 months ago)
- Last Synced: 2025-10-29T12:49:36.164Z (8 months ago)
- Topics: dotfiles, macos, shell, zshrc
- Language: Shell
- Homepage:
- Size: 16.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# .dotfiles
My backup and history for my dotfiles.
Easily bootstrap a new machine to fix my needs which seem to be every changing.
Git repository plus symlink make propagating dotfile changes across all machines simple.
# GNU Stow
Most of the dotfiles are symlinked using [GNU Stow](https://www.gnu.org/software/stow/)
Install on `macOS` using `homebrew`
```
brew install stow
```
#### Commands:
Install Dots repo with git:
```
curl -o- https://raw.githubusercontent.com/codebycorey/dotfiles/master/install.sh | bash
```
or directly use `git clone`
```
git clone git@github.com:codebycorey/dotfiles.git $HOME/.dotfiles
```
Once dotfiles is installed, you can install dots using either:
```bash
# initializing entire repo to environment
./bootstrap.sh
```
```bash
# Only symlink dots using stow
./scripts/dots.sh
```