Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yeojz/dotfiles
Another Dotfile Repository
https://github.com/yeojz/dotfiles
Last synced: 7 days ago
JSON representation
Another Dotfile Repository
- Host: GitHub
- URL: https://github.com/yeojz/dotfiles
- Owner: yeojz
- Created: 2013-10-28T07:03:36.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2019-11-23T14:40:01.000Z (almost 5 years ago)
- Last Synced: 2024-04-11T15:50:46.529Z (7 months ago)
- Language: Shell
- Homepage:
- Size: 69.3 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)"
```