Skip to content

Instantly share code, notes, and snippets.

@ktrysmt
Last active March 3, 2019 09:29
Show Gist options
  • Save ktrysmt/6892e72c162f83280d586e8e959168f1 to your computer and use it in GitHub Desktop.
Save ktrysmt/6892e72c162f83280d586e8e959168f1 to your computer and use it in GitHub Desktop.
Exstensions are markdown-all-in-one and path-autocomplete.
BackgroundColour=13,25,38
ForegroundColour=217,230,242
CursorColour=217,230,242
Black=0,0,0
BoldBlack=38,38,38
Red=184,122,122
BoldRed=219,189,189
Green=122,184,122
BoldGreen=189,219,189
Yellow=184,184,122
BoldYellow=219,219,189
Blue=122,122,184
BoldBlue=189,189,219
Magenta=184,122,184
BoldMagenta=219,189,219
Cyan=122,184,184
BoldCyan=189,219,219
White=217,217,217
BoldWhite=255,255,255
[
{
"key": "ctrl+shift+a",
"command": "cursorHomeSelect",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+left",
"command": "-cursorHomeSelect",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+e",
"command": "cursorEndSelect",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+right",
"command": "-cursorEndSelect",
"when": "editorTextFocus"
},
{
"key": "shift+end",
"command": "-cursorEndSelect",
"when": "editorTextFocus"
},
{
"key": "f3",
"command": "-editor.action.nextMatchFindAction",
"when": "editorFocus"
},
{
"key": "shift+alt+v",
"command": "markdown.showPreviewToSide",
"when": "editorLangId == 'markdown'"
},
{
"key": "cmd+k v",
"command": "-markdown.showPreviewToSide",
"when": "editorLangId == 'markdown'"
},
{
"key": "ctrl+tab",
"command": "-workbench.action.openNextRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+shift+tab",
"command": "-workbench.action.openPreviousRecentlyUsedEditorInGroup"
},
{
"key": "shift+alt+right",
"command": "workbench.action.quickOpenNavigateNextInEditorPicker",
"when": "inEditorsPicker && inQuickOpen"
},
{
"key": "ctrl+tab",
"command": "-workbench.action.quickOpenNavigateNextInEditorPicker",
"when": "inEditorsPicker && inQuickOpen"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "alt+cmd+right",
"command": "-workbench.action.nextEditor"
},
{
"key": "shift+cmd+]",
"command": "-workbench.action.nextEditor"
},
{
"key": "alt+cmd+left",
"command": "workbench.action.quickOpenNavigatePreviousInEditorPicker",
"when": "inEditorsPicker && inQuickOpen"
},
{
"key": "ctrl+shift+tab",
"command": "-workbench.action.quickOpenNavigatePreviousInEditorPicker",
"when": "inEditorsPicker && inQuickOpen"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "alt+cmd+left",
"command": "-workbench.action.previousEditor"
},
{
"key": "shift+cmd+[",
"command": "-workbench.action.previousEditor"
}
]
{
"git.autofetch": true,
"git.enableSmartCommit": true,
//"editor.tabSize": 2,
"markdown.extension.toc.orderedList": true,
"markdown.extension.toc.plaintext": true,
"git.confirmSync": false,
"editor.minimap.enabled": false,
"workbench.sideBar.location": "left",
"window.zoomLevel": -1,
"[markdown]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": true
},
"markdown.extension.showExplorer": true,
"zenMode.hideActivityBar": false,
"editor.detectIndentation": false,
"telemetry.enableTelemetry": false
}
[
{
"key": ".",
"command": ""
},
{
"key": "ctrl+t",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+oem_3",
"command": "-workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+r",
"command": "-workbench.action.openRecent"
},
{
"key": "ctrl+r",
"command": "-workbench.action.quickOpenNavigateNextInRecentFilesPicker",
"when": "inQuickOpen && inRecentFilesPicker"
},
{
"key": "ctrl+p",
"command": "-workbench.action.quickOpen"
},
{
"key": "ctrl+p",
"command": "-workbench.action.quickOpenNavigateNextInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "ctrl+shift+e",
"command": "workbench.action.quickOpen"
},
{
"key": "ctrl+e",
"command": "-workbench.action.quickOpen"
},
{
"key": "ctrl+shift+e",
"command": "workbench.action.quickOpenNavigateNextInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "ctrl+e",
"command": "-workbench.action.quickOpenNavigateNextInFilePicker",
"when": "inFilesPicker && inQuickOpen"
}
]
{
"folders": [
{
"path": "."
}
],
"settings": {
"terminal.integrated.env.windows": {
"MSYSTEM": "MSYS2",
"PATH": "/usr/bin:$PATH"
},
"terminal.integrated.setLocaleVariables": true,
"terminal.integrated.shell.windows": "C:\\msys64\\usr\\bin\\bash.exe",
"terminal.integrated.shellArgs.windows": [
"-i"
],
"terminal.integrated.cursorStyle": "underline",
"markdown.extension.toc.plaintext": true,
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.minimap.enabled": false,
"terminal.integrated.rendererType": "dom",
"window.zoomLevel": 0,
"git.ignoreMissingGitWarning": true,
"terminal.integrated.cwd": "C:\\msys64\\home\\$USERNAME",
"telemetry.enableTelemetry": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment