Skip to content

Instantly share code, notes, and snippets.

View juliofarah's full-sized avatar

Julio Farah juliofarah

  • BioRender
  • Vancouver, BC, Canada
View GitHub Profile
{
"editor.parameterHints.enabled": false,
"editor.codeActionsOnSave": {
"source.organizeImports": false
},
"editor.dragAndDrop": false,
"editor.fontFamily": "Monaco",
"editor.minimap.enabled": false,
"editor.fontLigatures": true,
"editor.lineNumbers": "relative",
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+p",
"command": "workbench.action.quickOpen"
},
{
"key": "cmd+p",
"command": "-workbench.action.quickOpen"
},
{
"create new React.FC": {
"prefix": "React.FC",
"body": [
"import React from 'react'",
"",
"interface Props {",
"",
"}",
"",
{
"Loop for each index": {
"prefix": "foreachi",
"body": [
"for i, $1 := range $2 {",
"}"
],
"description": "A for each loop with index"
},
"Loop for each": {