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

https://github.com/lowmess/dotfiles


https://github.com/lowmess/dotfiles

dot-files

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

### Set up a new machine

First things first, let's use `zsh`.

```bash
# set default shell to zsh
chsh -s $(which zsh)
```

After this, we'll need to restart our computer. When it's back up, let's install `git`.

```bash
# assuming macOS
xcode-select --install
```

Now let's clone or download the repo to `~/dotfiles/`.

```bash
cd ~ && git clone https://github.com/lowmess/dotfiles.git
```

Finally, we can run the install script. It's not an executable because I'm lazy.

```bash
cd ~/dotfiles && sh ./install.sh
```

The install script will install tools with `homebrew`, install apps with `cask`, install `nvm` and global node packages, and extend default configs with our own.