https://github.com/ddbourgin/dotfiles
Misc. dotfiles
https://github.com/ddbourgin/dotfiles
Last synced: about 1 year ago
JSON representation
Misc. dotfiles
- Host: GitHub
- URL: https://github.com/ddbourgin/dotfiles
- Owner: ddbourgin
- Created: 2015-09-28T01:58:48.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-12-31T01:31:04.000Z (over 1 year ago)
- Last Synced: 2025-01-25T10:42:19.730Z (over 1 year ago)
- Language: Vim Snippet
- Homepage:
- Size: 623 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
## Set up
You'll want to install the following items first:
### OSX
```sh
ssh-keygen -t ed25519 -C "your_email@example.com"
eval "$(ssh-agent -s)"
echo "Host *\n AddKeysToAgent yes\n IdentityFile ~/.ssh/id_ed25519" >> ~/.ssh/config # run this only if ~/.ssh/config doesn't already exist
ssh-add -K ~/.ssh/id_ed25519
```
Then [add the ssh key to your GitHub account](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account).
You may also want to install the [Solarized Dark Higher Contrast iTerm color scheme](https://iterm2colorschemes.com/).
### Ubuntu
```sh
ssh-keygen -t ed25519 -C "your_email@example.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
```
Then [add the ssh key to your GitHub account](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account).
## Installation
Clone the repo into the home directory using
```sh
git clone https://github.com/ddbourgin/dotfiles.git ~/.dotfiles && cd ~/.dotfiles
```
and then
```sh
./install
```