Skip to content

obj-p/.files

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

.files

First time setup

GitHub SSH key

This is likely the first repository that will be cloned to a new machine. To setup GitHub credentials follow along.

Generating a new SSH key and adding it to the ssh-agent

ssh-keygen -t ed25519 -C "your_email@example.com"

Enter a file in which to save the key (/Users/YOU/.ssh/id_ed25519):

github_ed25519

Start the ssh-agent.

eval "$(ssh-agent -s)"

Create an SSH config that references the generated key.

vim ~/.ssh/config

Paste the following.

Host *
  AddKeysToAgent yes
  UseKeychain yes

Host github.com
  IdentityFile ~/.ssh/github_ed25519

Add the private key to the keychain.

ssh-add --apple-use-keychain ~/.ssh/github_ed25519

Adding a new SSH key to your GitHub account

Copy and paste the following into the GitHub settings.

pbcopy < ~/.ssh/github_ed25519.pub

Homebrew

https://brew.sh

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

.files

git clone git@github.com:obj-p/.files.git

To create symlinks for the dotfiles.

make links

Install Homewbrew dependencies

cd ~ && brew bundle

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors