https://github.com/stevehobbsdev/machine-setup
https://github.com/stevehobbsdev/machine-setup
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/stevehobbsdev/machine-setup
- Owner: stevehobbsdev
- Created: 2022-03-19T21:00:39.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-03T18:26:27.000Z (about 1 year ago)
- Last Synced: 2025-04-15T14:03:37.775Z (about 1 year ago)
- Language: Lua
- Homepage:
- Size: 60.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- Support: support/init.vim
Awesome Lists containing this project
README
## System Config Setup
Clone this gist to something like ~/.elkdanger:
```
git clone https://github.com/stevehobbsdev/machine-setup ~/.elkdanger
```
and run the install script:
```
cd ~/.elkdanger
./install
```
### Load bash config
Load `bash_config` along with your shell login profile. Run manually, or copy into your ~/.zshrc file.
```
source /Users/$USER/.elkdanger/bash_config
```
### Options
#### `--no-apps`
Use this option to skip the installation of additional applications. This is useful if you only want to set up the environment without installing extra software.
```
./install --no-apps
```
#### `--no-dev`
Use this option to skip the installation of development tools. This is useful if you do not need development tools in your setup.
```
./install --no-dev
```
You can combine both options if needed:
```
./install --no-apps --no-dev
```