All applications configurations
Start by cloning my dotfiles
into ~/.dotfiles
and run the ./install
curl -sL https://raw.githubusercontent.com/luciotbc/dotfiles/master/_setup.sh | bash
This repository is licensed under the WTFNMFPL.
Use your tools well or use better tools.
Setup my GitHub Keys
Create a new RSA Key
ssh-keygen -t rsa -b 4096 -C "[email protected]"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
cat ~/.ssh/id_rsa.pub
Create a new GPG Key
gpg --default-new-key-algo rsa4096 --gen-key
gpg --list-secret-keys --keyid-format LONG
gpg --armor --export XXXXXXXXXXXXXXX
git config --global user.signingkey XXXXXXXXXXXXXXX
git config --global commit.gpgsign true
To add your GPG key to your bash profile, paste the text below:
$ test -r ~/.bash_profile && echo 'export GPG_TTY=$(tty)' >> ~/.bash_profile
$ echo 'export GPG_TTY=$(tty)' >> ~/.profile