This file contains hidden or 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
#Requires AutoHotkey v2.0 | |
#SingleInstance | |
; DESCRIPTION: | |
; Maps windows keyboard keys to be more like MacOs for coding tasks. | |
; Allows fingers to use muscle memory based on key position on Mac. | |
; Assumes the following ordering of keys on your keyboard: | |
; MacBook: | |
; fn, control, option, command |
This file contains hidden or 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
[ | |
{ "key": "cmd+1","command": "workbench.action.openEditorAtIndex1" }, | |
{ "key": "cmd+2","command": "workbench.action.openEditorAtIndex2" }, | |
{ "key": "cmd+3","command": "workbench.action.openEditorAtIndex3" }, | |
{ "key": "cmd+4","command": "workbench.action.openEditorAtIndex4" }, | |
{ "key": "cmd+5","command": "workbench.action.openEditorAtIndex5" }, | |
{ "key": "cmd+6","command": "workbench.action.openEditorAtIndex6" }, | |
{ "key": "cmd+7","command": "workbench.action.openEditorAtIndex7" }, | |
{ "key": "cmd+8","command": "workbench.action.openEditorAtIndex8" }, | |
{ "key": "cmd+9","command": "workbench.action.openEditorAtIndex9" }, |
This file contains hidden or 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
{ | |
"breadcrumbs.enabled": true, | |
"diffEditor.renderSideBySide": true, | |
"editor.insertSpaces": true, | |
"editor.formatOnPaste": false, | |
"editor.formatOnSave": false, | |
"editor.formatOnType": false, | |
"editor.minimap.enabled": false, | |
"editor.minimap.maxColumn": 80, | |
"editor.minimap.renderCharacters": false, |
This file contains hidden or 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 a Vuex store module to represent states for an asynchronous API getter. | |
* | |
* Includes defaultState, actions, and mutations for a standard value gotten via asynchronous call. | |
* See defaultState() function for list of states included. | |
* | |
* Usage: | |
* Assuming we have an async call to get documents (getDocuments) which takes a payload object as an arg, here's what we can do: | |
* | |
* ----- store.js ----- |