dotfiles/README.md

28 lines
530 B
Markdown
Raw Normal View History

2022-05-11 20:02:19 -04:00
# dotfiles
2022-05-11 20:02:19 -04:00
too many dotfiles
## Install
Personally I like to keep all my repos in `~/src/github.com/<user>/<repo>`, but it's also handy to have my dotfiles directory at `~/.dotfiles`, so I start by doing:
```
mkdir -p ~/src/github.com/eritbh
git clone https://github.com/eritbh/dotfiles.git src/github.com/eritbh/dotfiles
ln -s ~/src/githhub.com/eritbh/dotfiles ~/.dotfiles
```
Then, you can install other stuff:
### zsh
```
ln -s ~/.dotfiles/zsh/.zshrc ~/.zshrc
```
2022-07-11 11:34:44 -04:00
### vim
```
ln -s ~/.dotfiles/vim/.vimrc ~/.vimrc
```