Modified readme files + added SSH.

This commit is contained in:
George Rawlinson 2016-01-24 10:45:18 +13:00
parent 01ffc22167
commit f36f5f6e49
5 changed files with 91 additions and 34 deletions

View File

@ -1,35 +1,57 @@
# Software # Software
## General ## General
* Calibre
* LibreOffice * Calibre
* VLC * LibreOffice
* Thunderbird * VLC
* Thunderbird
## Browsers ## Browsers
* Chromium
* Firefox (Aurora) * Chromium
* Firefox (Aurora)
### Plugins ### Plugins
* Reddit Enhancement Suite
* uBlock Origin * Reddit Enhancement Suite
* uBlock Origin
## Development ## Development
* Postman
* Atom Editor * Postman
* Nodejs+NPM (oh-my-zsh plugin) * Atom Editor
* ESLint * Node.js
* Nodemon * npm
* MongoDB * MongoDB
* PostgreSQL * PostgreSQL
### Global NPM packages
* ESLint
* Nodemon
## Terminal ## Terminal
* Weechat
* ZSH (zsh-completions, oh-my-zsh + plugins) * Weechat
* Screenfetch+scrot * ZSH
* OpenSSH * Screenfetch+scrot
* HTOP * OpenSSH
* LFTP * HTOP
* VIM + plugins * LFTP
* VIM + plugins
### ZSH plugins
* npm
* ssh-agent
* alert
## Utilities ## Utilities
* Thunderbird
* ownCloud client * Thunderbird
* KeepassX2 * ownCloud client
* Calibre * KeepassX2
* PulseAudio+pavucontrol * Calibre
* Evince * PulseAudio+pavucontrol
* Evince

View File

@ -3,13 +3,17 @@
* Install NPM packages globally without requiring sudo. ([source][1]) * Install NPM packages globally without requiring sudo. ([source][1])
* Save exact version instead of a 'loose' version. ([source][2]) * Save exact version instead of a 'loose' version. ([source][2])
Create a symlink for ```.npmrc``` Create a symlink for `.npmrc`
```ln -s npmrc ~/.npmrc``` `ln -s npmrc ~/.npmrc`
Shell wizardry Shell wizardry
`ln -s npm.zsh ~/.oh-my-zsh/custom/npm.zsh` `ln -s npm.zsh ~/.oh-my-zsh/custom/npm.zsh`
Create directory for global packages
`mkdir ~/.npm-packages`
[1]: https://github.com/sindresorhus/guides/blob/master/npm-global-without-sudo.md [1]: https://github.com/sindresorhus/guides/blob/master/npm-global-without-sudo.md
[2]: https://docs.npmjs.com/misc/config#save-exact [2]: https://docs.npmjs.com/misc/config#save-exact

11
ssh/README.md Normal file
View File

@ -0,0 +1,11 @@
# SSH
Create SSH directory & copy config there.
`mkdir -p ~/.ssh/`
`cp config ~/.ssh/`
Generate SSH key(s)
`ssh-keygen -t rsa -b 4096 -C "comment" -f /path/to/ssh/key`

20
ssh/config Normal file
View File

@ -0,0 +1,20 @@
Host biblioteca.me
HostName biblioteca.me
Port port
User user
IdentityFile /path/to/ssh/key
Host aur.archlinux.org
HostName aur.archlinux.org
User aur
IdentityFile /path/to/ssh/key
Host bitbucket.org
User git
HostName bitbucket.org
IdentityFile /path/to/ssh/key
Host github.com gist.github.com
User git
HostName github.com
IdentityFile /path/to/ssh/key

View File

@ -2,14 +2,14 @@
* Enable syntax coloration + Monokai theme. ([source][1]) * Enable syntax coloration + Monokai theme. ([source][1])
Create a symlink for ```.vimrc``` Create a symlink for `.vimrc`
```ln -s vimrc ~/.vimrc``` `ln -s vimrc ~/.vimrc`
Create folders for Monokai colors Create folders for Monokai colors
```mkdir -p ~/.vim/colors``` `mkdir -p ~/.vim/colors`
```ln -s monokai.vim ~/.vim/colors/monokai.vim``` `ln -s monokai.vim ~/.vim/colors/monokai.vim`
[1]: https://github.com/sickill/vim-monokai/ [1]: https://github.com/sickill/vim-monokai/