Modified readme files + added SSH.
This commit is contained in:
parent
01ffc22167
commit
f36f5f6e49
5 changed files with 91 additions and 34 deletions
30
SOFTWARE.md
30
SOFTWARE.md
|
@ -1,32 +1,54 @@
|
||||||
# Software
|
# Software
|
||||||
|
|
||||||
## General
|
## General
|
||||||
|
|
||||||
* Calibre
|
* Calibre
|
||||||
* LibreOffice
|
* LibreOffice
|
||||||
* VLC
|
* VLC
|
||||||
* Thunderbird
|
* Thunderbird
|
||||||
|
|
||||||
## Browsers
|
## Browsers
|
||||||
|
|
||||||
* Chromium
|
* Chromium
|
||||||
* Firefox (Aurora)
|
* Firefox (Aurora)
|
||||||
|
|
||||||
### Plugins
|
### Plugins
|
||||||
|
|
||||||
* Reddit Enhancement Suite
|
* Reddit Enhancement Suite
|
||||||
* uBlock Origin
|
* uBlock Origin
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
* Postman
|
* Postman
|
||||||
* Atom Editor
|
* Atom Editor
|
||||||
* Nodejs+NPM (oh-my-zsh plugin)
|
* Node.js
|
||||||
* ESLint
|
* npm
|
||||||
* Nodemon
|
|
||||||
* MongoDB
|
* MongoDB
|
||||||
* PostgreSQL
|
* PostgreSQL
|
||||||
|
|
||||||
|
### Global NPM packages
|
||||||
|
|
||||||
|
* ESLint
|
||||||
|
* Nodemon
|
||||||
|
|
||||||
## Terminal
|
## Terminal
|
||||||
|
|
||||||
* Weechat
|
* Weechat
|
||||||
* ZSH (zsh-completions, oh-my-zsh + plugins)
|
* ZSH
|
||||||
* Screenfetch+scrot
|
* Screenfetch+scrot
|
||||||
* OpenSSH
|
* OpenSSH
|
||||||
* HTOP
|
* HTOP
|
||||||
* LFTP
|
* LFTP
|
||||||
* VIM + plugins
|
* VIM + plugins
|
||||||
|
|
||||||
|
### ZSH plugins
|
||||||
|
|
||||||
|
* npm
|
||||||
|
* ssh-agent
|
||||||
|
* alert
|
||||||
|
|
||||||
## Utilities
|
## Utilities
|
||||||
|
|
||||||
* Thunderbird
|
* Thunderbird
|
||||||
* ownCloud client
|
* ownCloud client
|
||||||
* KeepassX2
|
* KeepassX2
|
||||||
|
|
|
@ -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
11
ssh/README.md
Normal 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
20
ssh/config
Normal 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
|
|
@ -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/
|
||||||
|
|
Loading…
Reference in a new issue