https://github.com/jackplowman/development-environment
My dotfiles for MacOS
https://github.com/jackplowman/development-environment
dotfiles macos shell zsh
Last synced: 14 days ago
JSON representation
My dotfiles for MacOS
- Host: GitHub
- URL: https://github.com/jackplowman/development-environment
- Owner: JackPlowman
- License: mit
- Created: 2024-07-16T10:43:23.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-10-29T12:45:03.000Z (9 months ago)
- Last Synced: 2024-10-29T14:33:24.985Z (9 months ago)
- Topics: dotfiles, macos, shell, zsh
- Language: Shell
- Homepage:
- Size: 163 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Development Environment
This repository contains my development environment configuration files, including dotfiles for Zsh, and other tools. It is designed to be used with GNU Stow to manage the symlinks in your home directory.
## Getting Started
Run the following commands to install the development environment:
```bash
git clone https://github.com/JackPlowman/development-environment.git
cd development-environment
```Stow the dotfiles in your home directory:
```bash
stow -t ~/ -R .
```Open the `.zshrc` file in your text editor and make any necessary changes.
Then start a new terminal session, open the terminal and run the following command:
```bash
source ~/.zshrc
```## Homebrew
### Create brewfile
To create a brewfile, run the following command:
```bash
brew bundle dump
```### Install from brewfile
To install from the brewfile, run the following command:
```bash
brew bundle install
```