https://github.com/ryanhanwu/dotfiles
These are dot-files and basic environment configuration of my dev Mac
https://github.com/ryanhanwu/dotfiles
cask cli dotfiles homebrew shell
Last synced: about 1 year ago
JSON representation
These are dot-files and basic environment configuration of my dev Mac
- Host: GitHub
- URL: https://github.com/ryanhanwu/dotfiles
- Owner: ryanhanwu
- License: mit
- Created: 2014-01-05T04:20:19.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2025-03-21T15:34:59.000Z (over 1 year ago)
- Last Synced: 2025-05-04T21:07:41.510Z (about 1 year ago)
- Topics: cask, cli, dotfiles, homebrew, shell
- Language: Shell
- Homepage:
- Size: 255 KB
- Stars: 18
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dotfiles
These are dot-files and basic configs of my development Mac, feel free to use and do whatever you want.
# Installation
Checkout the repository and simply run `init.sh`
```
git clone https://github.com/ryanhanwu/dotfiles.git && cd dotfiles
sh ./init.sh
```
## What's installed?
### Linked Dotfiles
* `~/.gitconfig`
* `~/.gitignore_global`
* `./.iterm2.zsh`
* `~/.tmux`
* `~/.vimrc`
* `~/.zshrc`
### Configurations
* Shell [plugins&configurations](https://github.com/ryanhanwu/dotfiles/blob/master/.zshrc) through [Oh My Zsh]()
* Vim [plugins & settings](https://github.com/amix/vimrc) through The Ultimate vimrc.
* Mac HomeBrew [settings](https://github.com/ryanhanwu/dotfiles/blob/master/Brewfile) through [Brewbundle](https://github.com/Homebrew/homebrew-bundle)
* System Node.js and [NVM](https://github.com/creationix/nvm)
* Tmux [Oh My Tmux!](https://github.com/gpakosz/.tmux.git)
# Generate Your Development SSH Key
1. Generate your key for the development machine
```
ssh-keygen -t rsa -b 4096
```
1. Copy your public key (***~/.ssh/id_rsa.pub***) to your Github/Bitbucket Account's "SSH Keys"
1. Link git config
```
ln -sf ~/Dropbox/RyanDB/Mackup/.ssh/config ~/.ssh/config
```
# Create backup folder
```
ln -sf ~/Dropbox/RyanDB/Mackup/.mackup ~/.mackup
```