Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simonepizzamiglio/dotfiles
My dotfiles setup.
https://github.com/simonepizzamiglio/dotfiles
Last synced: about 2 months ago
JSON representation
My dotfiles setup.
- Host: GitHub
- URL: https://github.com/simonepizzamiglio/dotfiles
- Owner: simonepizzamiglio
- Created: 2020-11-15T20:52:53.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-07T08:18:22.000Z (almost 3 years ago)
- Last Synced: 2024-04-16T01:03:35.286Z (9 months ago)
- Language: Shell
- Size: 268 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation
**Warning:** If you want to give these dotfiles a try, you should first fork this repository, review the code, and remove things you don’t want or need. Don’t blindly use my settings unless you know what that entails. Use at your own risk!
### Using Git and the bootstrap script
You can clone the repository wherever you want. (I like to keep it in `~/Developments/projects/dotfiles`, with `~/dotfiles` as a symlink.) The init script will pull in the latest version and copy the files to your home folder.
```bash
git clone https://github.com/simonepizzamiglio/dotfiles.git && cd dotfiles && sh init.sh
```To update, `cd` into your local `dotfiles` repository and then:
```bash
sh init.sh
```Alternatively, to update while avoiding the confirmation prompt:
```bash
set -- -f; sh init.sh
```### Git-free install
To install these dotfiles without Git:
```bash
cd; curl -#L https://github.com/simonepizzamiglio/dotfiles/tarball/master | tar -xzv --strip-components 1 --exclude={README.md,init.sh}
```To update later on, just run that command again.
## Dependency Installation
Install dependencies if you're missing them:
```bash
sh deps.sh
```## Apps Installation
Install apps if you're missing them:
```bash
sh apps.sh
```## ZSH Installation + oh-my-zsh + spaceship theme installation
Install apps if you're missing them:
```bash
sh zsh.sh
```### Sensible macOS defaults
When setting up a new Mac, you may want to set some sensible macOS defaults:
```bash
sh macos.sh
```