This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"create new React.FC": { | |
"prefix": "React.FC", | |
"body": [ | |
"import React from 'react'", | |
"", | |
"interface Props {", | |
"", | |
"}", | |
"", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Loop for each index": { | |
"prefix": "foreachi", | |
"body": [ | |
"for i, $1 := range $2 {", | |
"}" | |
], | |
"description": "A for each loop with index" | |
}, | |
"Loop for each": { |