From 34dce733c470d7fd2e5fe37558d9ec93ea902ffa Mon Sep 17 00:00:00 2001 From: William Carroll Date: Thu, 7 Mar 2019 16:45:30 +0000 Subject: Updates README installation instructions After doing another dotfiles installation on the newly acquired cloudtop instance, I ran into some bumps and documented the fixes. --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 08797916ffe7..13eb36e295fc 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,13 @@ Configuration is everything. 1. Authorize computer to access dotfiles ```bash -$ ssh-keygen -b 4096 -c 'wpcarro@gmail.com' -$ eval $(ssh-agent -option) +$ ssh-keygen -t rsa -b 4096 -C 'wpcarro@gmail.com' +$ eval $(ssh-agent -s) +$ ssh-add ~/.ssh/id_rsa $ xclip -sel clip <~/.ssh/id_rsa.pub $ browse github.com # paste ssh public key in settings $ mkdir ~/programming -$ git clone git@github.com:wpcarro/dotfiles ~/programming +$ git clone git@github.com:wpcarro/dotfiles ~/programming/dotfiles ``` 2. Install Antigen, Vundle, nix-env for package management @@ -26,7 +27,7 @@ $ git clone git@github.com:wpcarro/dotfiles ~/programming $ # antigen $ curl -L git.io/antigen >~/antigen.zsh $ # vundle -$ g clone VundleVim/Vundle.vim.git ~/.config/nvim/bundle/Vundle.vim +$ g clone VundleVim/Vundle.vim ~/.config/nvim/bundle/Vundle.vim $ # nix-env $ curl https://nixos.org/nix/install | sh $ for p in $(cat nix-env.txt); do -- cgit 1.4.1