Change git clone method from SSH to HTTPS & update readme

This commit is contained in:
George Rawlinson 2016-10-23 20:09:43 +13:00
parent d77440d0aa
commit 5a38776a23
2 changed files with 15 additions and 5 deletions

View File

@ -31,7 +31,7 @@ npm:
nvim:
@stow -t ~/ nvim
curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
@echo "Run :PlugInstall when nvim is first run!"
ssh:
@ -47,8 +47,8 @@ wallpapers:
@stow -t ~/ wallpapers
zsh:
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
git clone https://github.com/zsh-users/zsh-completions ~/.oh-my-zsh/custom/plugins/zsh-completions
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
git clone https://github.com/zsh-users/zsh-completions.git ~/.oh-my-zsh/custom/plugins/zsh-completions
@stow -t ~/ zsh
clean:

View File

@ -1,6 +1,6 @@
# dotfiles & system setup
```shell
```
git > global git config & aliases
lftp > sftp management
npm > npm configuration (ha ha)
@ -16,8 +16,18 @@ zsh > shell, aliases and cool stuff
Clone repository, then setup as desired.
Look at Makefile, or use GNU Stow directly.
Look at [Makefile](Makefile), or use [GNU Stow][url-gnu-stow] directly.
## Further Reading
* [Mozilla OpenSSH security guidelines][url-mozilla-ssh]
* [Good read on securing OpenSSH][url-secure-shell]
## LICENSE
The MIT License ([MIT](LICENSE.md))
[url-gnu-stow]:https://www.gnu.org/software/stow/
[url-mozilla-ssh]:https://wiki.mozilla.org/Security/Guidelines/OpenSSH
[url-secure-shell]:https://stribika.github.io/2015/01/04/secure-secure-shell.html