diff --git a/SOFTWARE.md b/SOFTWARE.md index fbde6ea..fc308f1 100644 --- a/SOFTWARE.md +++ b/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 diff --git a/npm/README.md b/npm/README.md index 393ed00..6df112a 100644 --- a/npm/README.md +++ b/npm/README.md @@ -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 diff --git a/ssh/README.md b/ssh/README.md new file mode 100644 index 0000000..90c970c --- /dev/null +++ b/ssh/README.md @@ -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` diff --git a/ssh/config b/ssh/config new file mode 100644 index 0000000..8d60520 --- /dev/null +++ b/ssh/config @@ -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 diff --git a/vim/README.md b/vim/README.md index bcfb5f7..c7b7450 100644 --- a/vim/README.md +++ b/vim/README.md @@ -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/