Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/yeojz/dotfiles

Another Dotfile Repository
https://github.com/yeojz/dotfiles

Last synced: 7 days ago
JSON representation

Another Dotfile Repository

Awesome Lists containing this project

README

        

# dotfiles

======

## Getting Started

```bash
> git clone https://github.com/yeojz/dotfiles.git ~/.dotfiles
# Create a local file.
> touch ~/.dotfiles.local
```

Source any files in the `/config` folder that you want in `.dotfiles.local`

```bash
source ~/.dotfiles/config/npm
source ~/.dotfiles/config/nvm
```

Add the following to your `.zshrc` / `.bashrc` / `.profile`

```bash
if [ -f ~/.dotfiles.local ]; then
source ~/.dotfiles.local
fi
```

**Note:** All scripts assume the `dotfiles` repository is stored in `~/.dotfiles`

## Others

To install `git-aliases`:

```bash
cat ~/.dotfiles/misc/git-aliases | tee -a ~/.gitconfig
```

To install `homebrew`

```bash
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
```