Modified readme files + added SSH.
This commit is contained in:
parent
01ffc22167
commit
f36f5f6e49
5 changed files with 91 additions and 34 deletions
78
SOFTWARE.md
78
SOFTWARE.md
|
@ -1,35 +1,57 @@
|
|||
# Software
|
||||
|
||||
## General
|
||||
* Calibre
|
||||
* LibreOffice
|
||||
* VLC
|
||||
* Thunderbird
|
||||
|
||||
* Calibre
|
||||
* LibreOffice
|
||||
* VLC
|
||||
* Thunderbird
|
||||
|
||||
## Browsers
|
||||
* Chromium
|
||||
* Firefox (Aurora)
|
||||
|
||||
* Chromium
|
||||
* Firefox (Aurora)
|
||||
|
||||
### Plugins
|
||||
* Reddit Enhancement Suite
|
||||
* uBlock Origin
|
||||
|
||||
* Reddit Enhancement Suite
|
||||
* uBlock Origin
|
||||
|
||||
## Development
|
||||
* Postman
|
||||
* Atom Editor
|
||||
* Nodejs+NPM (oh-my-zsh plugin)
|
||||
* ESLint
|
||||
* Nodemon
|
||||
* MongoDB
|
||||
* PostgreSQL
|
||||
|
||||
* Postman
|
||||
* Atom Editor
|
||||
* Node.js
|
||||
* npm
|
||||
* MongoDB
|
||||
* PostgreSQL
|
||||
|
||||
### Global NPM packages
|
||||
|
||||
* ESLint
|
||||
* Nodemon
|
||||
|
||||
## Terminal
|
||||
* Weechat
|
||||
* ZSH (zsh-completions, oh-my-zsh + plugins)
|
||||
* Screenfetch+scrot
|
||||
* OpenSSH
|
||||
* HTOP
|
||||
* LFTP
|
||||
* VIM + plugins
|
||||
|
||||
* Weechat
|
||||
* ZSH
|
||||
* Screenfetch+scrot
|
||||
* OpenSSH
|
||||
* HTOP
|
||||
* LFTP
|
||||
* VIM + plugins
|
||||
|
||||
### ZSH plugins
|
||||
|
||||
* npm
|
||||
* ssh-agent
|
||||
* alert
|
||||
|
||||
## Utilities
|
||||
* Thunderbird
|
||||
* ownCloud client
|
||||
* KeepassX2
|
||||
* Calibre
|
||||
* PulseAudio+pavucontrol
|
||||
* Evince
|
||||
|
||||
* Thunderbird
|
||||
* ownCloud client
|
||||
* KeepassX2
|
||||
* Calibre
|
||||
* PulseAudio+pavucontrol
|
||||
* Evince
|
||||
|
|
|
@ -3,13 +3,17 @@
|
|||
* Install NPM packages globally without requiring sudo. ([source][1])
|
||||
* 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
|
||||
|
||||
`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
|
||||
[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])
|
||||
|
||||
Create a symlink for ```.vimrc```
|
||||
Create a symlink for `.vimrc`
|
||||
|
||||
```ln -s vimrc ~/.vimrc```
|
||||
`ln -s vimrc ~/.vimrc`
|
||||
|
||||
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/
|
||||
|
|
Loading…
Reference in a new issue