Updates README installation instructions
After doing another dotfiles installation on the newly acquired cloudtop instance, I ran into some bumps and documented the fixes.
This commit is contained in:
parent
dc3c37c78e
commit
34dce733c4
1 changed files with 5 additions and 4 deletions
|
@ -12,12 +12,13 @@ Configuration is everything.
|
||||||
1. Authorize computer to access dotfiles
|
1. Authorize computer to access dotfiles
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ ssh-keygen -b 4096 -c 'wpcarro@gmail.com'
|
$ ssh-keygen -t rsa -b 4096 -C 'wpcarro@gmail.com'
|
||||||
$ eval $(ssh-agent -option)
|
$ eval $(ssh-agent -s)
|
||||||
|
$ ssh-add ~/.ssh/id_rsa
|
||||||
$ xclip -sel clip <~/.ssh/id_rsa.pub
|
$ xclip -sel clip <~/.ssh/id_rsa.pub
|
||||||
$ browse github.com # paste ssh public key in settings
|
$ browse github.com # paste ssh public key in settings
|
||||||
$ mkdir ~/programming
|
$ 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
|
2. Install Antigen, Vundle, nix-env for package management
|
||||||
|
@ -26,7 +27,7 @@ $ git clone git@github.com:wpcarro/dotfiles ~/programming
|
||||||
$ # antigen
|
$ # antigen
|
||||||
$ curl -L git.io/antigen >~/antigen.zsh
|
$ curl -L git.io/antigen >~/antigen.zsh
|
||||||
$ # vundle
|
$ # vundle
|
||||||
$ g clone VundleVim/Vundle.vim.git ~/.config/nvim/bundle/Vundle.vim
|
$ g clone VundleVim/Vundle.vim ~/.config/nvim/bundle/Vundle.vim
|
||||||
$ # nix-env
|
$ # nix-env
|
||||||
$ curl https://nixos.org/nix/install | sh
|
$ curl https://nixos.org/nix/install | sh
|
||||||
$ for p in $(cat nix-env.txt); do
|
$ for p in $(cat nix-env.txt); do
|
||||||
|
|
Loading…
Reference in a new issue