Syntax: <type>: <summary>
feat: add awesome feature
^--^ ^-----------------^
| |
| {"attributes":[{"trait_type":"base","value":"starfish"}],"description":"Friendly OpenSea Creature that enjoys long swims in the ocean.","image":"https://storage.googleapis.com/opensea-prod.appspot.com/creature/1.png","name":"Sprinkles Fisherton"} |
| { | |
| "editor.fontSize": 14, | |
| "editor.fontFamily": "Jetbrains Mono", | |
| "editor.insertSpaces": false, | |
| "editor.cursorBlinking": "smooth", | |
| "editor.dragAndDrop": false, | |
| "workbench.commandPalette.history": 100, | |
| "terminal.external.osxExec": "Hyper.app", | |
| "terminal.integrated.cursorStyle": "line", | |
| "terminal.integrated.cursorBlinking": true, |
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // choose either `'stable'` for receiving highly polished, | |
| // or `'canary'` for less polished but more frequent updates | |
| updateChannel: 'stable', |
| PATH=${PATH}:~/bin | |
| export PATH | |
| # Git aliases | |
| alias gi="git init" | |
| alias gs="git status" | |
| alias ga="git add" | |
| alias gaa="git add ." | |
| alias gc="git commit -m" | |
| alias gb="git checkout -b" |