diff options
author | William Carroll <wpcarro@gmail.com> | 2019-03-07T16·45+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-03-07T16·45+0000 |
commit | 34dce733c470d7fd2e5fe37558d9ec93ea902ffa (patch) | |
tree | d49a5bf9cdec0b151cbd3faebbfed0d83933a9d3 /README.md | |
parent | dc3c37c78e72016bb997cae2f65faa701183b5db (diff) |
Updates README installation instructions
After doing another dotfiles installation on the newly acquired cloudtop instance, I ran into some bumps and documented the fixes.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 9 |
1 files changed, 5 insertions, 4 deletions
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 |