I hereby claim:
- I am kuret on github.
- I am kuret (https://keybase.io/kuret) on keybase.
- I have a public key ASA6nRlzZFvEBJbCbohTC9nOhwAb4UzYfNbao0n7_ipfVQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Install ARCH Linux with encrypted file-system and UEFI | |
| # The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
| # Download the archiso image from https://www.archlinux.org/ | |
| # Copy to a usb-drive | |
| dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
| # Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. | |
| # Set swedish keymap |
| [commit] | |
| template = ~/.gitmessage |
| #!/bin/bash | |
| # Runs ESLint and Stylelint on all STAGED files before committing | |
| js_files=$(git diff --cached --name-status | grep '^\(A\|M\).*\.jsx\?$' | sed 's/^[AM]//g') | |
| css_files=$(git diff --cached --name-status | grep '^\(A\|M\).*\.cssx\?$' | sed 's/^[AM]//g') | |
| # Prevent ESLint help message if no files matched | |
| if [ "${js_files}" = "" ] && [ "${css_files}" = "" ] ; then | |
| exit 0 | |
| fi |