An open API service indexing awesome lists of open source software.

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.

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.