https://github.com/reybits/bootstrap
A script for quickly setting up a development environment on a new system.
https://github.com/reybits/bootstrap
config linux macos
Last synced: 2 months ago
JSON representation
A script for quickly setting up a development environment on a new system.
- Host: GitHub
- URL: https://github.com/reybits/bootstrap
- Owner: reybits
- License: mit
- Created: 2025-02-21T11:26:44.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-14T16:06:10.000Z (over 1 year ago)
- Last Synced: 2025-03-14T16:46:09.854Z (over 1 year ago)
- Topics: config, linux, macos
- Language: Shell
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WARNING
> Use this script at your own risk. The author assumes no responsibility for any outcomes resulting from the use of this script. By using this script, you accept full responsibility for any potential consequences.
# INSTALLATION
## zsh
The installation process depends on your OS. For example:
- Ubuntu/Debian: `sudo apt install zsh`
- macOS (with Homebrew): `brew install zsh`
To set Zsh as your default shell:
```bash
chsh -s $(which zsh)
```
For more detailed instructions, please refer to the [Zsh documentation](https://www.zsh.org/) or consult your OS-specific resources.
## bootstrap
The recommended **bootstrap.sh** directory is *~/configs/*.
```sh
mkdir ~/configs
cd ~/configs
git clone git@github.com:reybits/bootstrap.git .
./bootstrap.sh
```
Follow instructions.