Visual Studio Code Settings
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
{"lastUpload":"2021-02-05T14:58:45.827Z","extensionVersion":"v3.4.3"} |
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 override the defaultsauto[] | |
[ | |
{ | |
"key": "f1", | |
"command": "-workbench.action.showCommands" | |
}, | |
{ | |
"key": "ctrl+shift+space", | |
"command": "cursorLeft", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+s", | |
"command": "-workbench.action.openGlobalKeybindings" | |
}, | |
{ | |
"key": "f4", | |
"command": "-search.action.focusNextSearchResult", | |
"when": "hasSearchResult" | |
}, | |
{ | |
"key": "f4", | |
"command": "-goToNextReference", | |
"when": "referenceSearchVisible" | |
}, | |
{ | |
"key": "f4", | |
"command": "-goToNextReferenceFromEmbeddedEditor", | |
"when": "inReferenceSearchEditor" | |
}, | |
{ | |
"key": "f4", | |
"command": "-references-view.next", | |
"when": "reference-list.hasResult" | |
}, | |
{ | |
"key": "shift+alt+down", | |
"command": "-editor.action.copyLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+q", | |
"command": "-workbench.action.quickOpenView" | |
}, | |
{ | |
"key": "ctrl+q", | |
"command": "-workbench.action.quickOpenNavigateNextInViewPicker", | |
"when": "inQuickOpen && inViewsPicker" | |
}, | |
{ | |
"key": "ctrl+shift+d", | |
"command": "editor.action.deleteLines", | |
"when": "textInputFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+q", | |
"command": "editor.action.commentLine", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+oem_2", | |
"command": "-editor.action.commentLine", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+shift+q", | |
"command": "editor.action.blockComment", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "shift+alt+a", | |
"command": "-editor.action.blockComment", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "f5", | |
"command": "-workbench.action.debug.start", | |
"when": "!inDebugMode" | |
}, | |
{ | |
"key": "f6", | |
"command": "-workbench.action.debug.pause", | |
"when": "debugState == 'running'" | |
}, | |
{ | |
"key": "f5", | |
"command": "-workbench.action.debug.continue", | |
"when": "inDebugMode" | |
}, | |
{ | |
"key": "ctrl+down", | |
"command": "editor.action.moveLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "alt+down", | |
"command": "-editor.action.moveLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+up", | |
"command": "editor.action.moveLinesUpAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "alt+up", | |
"command": "-editor.action.moveLinesUpAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+shift+q", | |
"command": "-workbench.action.quickOpenNavigatePreviousInViewPicker", | |
"when": "inQuickOpen && inViewsPicker" | |
}, | |
{ | |
"key": "ctrl+shift+d", | |
"command": "-workbench.view.debug" | |
}, | |
{ | |
"key": "shift+alt+right", | |
"command": "-editor.action.smartSelect.expand", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "shift+alt+left", | |
"command": "-editor.action.smartSelect.shrink", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+e", | |
"command": "editor.action.smartSelect.expand" | |
}, | |
{ | |
"key": "ctrl+h", | |
"command": "-editor.action.startFindReplaceAction" | |
}, | |
{ | |
"key": "ctrl+k ctrl+i", | |
"command": "-editor.action.showHover", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+tab", | |
"command": "-workbench.action.openNextRecentlyUsedEditorInGroup" | |
}, | |
{ | |
"key": "ctrl+shift+tab", | |
"command": "-workbench.action.openPreviousRecentlyUsedEditorInGroup" | |
}, | |
{ | |
"key": "ctrl+tab", | |
"command": "-workbench.action.quickOpenNavigateNextInEditorPicker", | |
"when": "inEditorsPicker && inQuickOpen" | |
}, | |
{ | |
"key": "ctrl+shift+tab", | |
"command": "-workbench.action.quickOpenNavigatePreviousInEditorPicker", | |
"when": "inEditorsPicker && inQuickOpen" | |
}, | |
{ | |
"key": "ctrl+tab", | |
"command": "workbench.action.nextEditor" | |
}, | |
{ | |
"key": "ctrl+pagedown", | |
"command": "-workbench.action.nextEditor" | |
}, | |
{ | |
"key": "ctrl+shift+tab", | |
"command": "workbench.action.previousEditor" | |
}, | |
{ | |
"key": "ctrl+pageup", | |
"command": "-workbench.action.previousEditor" | |
}, | |
{ | |
"key": "ctrl+shift+e", | |
"command": "-workbench.view.explorer" | |
}, | |
{ | |
"key": "ctrl+shift+e", | |
"command": "-workbench.action.quickOpenNavigatePreviousInFilePicker", | |
"when": "inFilesPicker && inQuickOpen" | |
}, | |
{ | |
"key": "f9", | |
"command": "-editor.debug.action.toggleBreakpoint", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "f9", | |
"command": "-sortLines.sortLines", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+c", | |
"command": "-workbench.action.terminal.toggleFindCaseSensitive", | |
"when": "terminalFindWidgetFocused" | |
}, | |
{ | |
"key": "alt+c", | |
"command": "-workbench.action.terminal.toggleFindCaseSensitiveTerminalFocus", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "alt+f1", | |
"command": "-editor.action.showAccessibilityHelp", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+t", | |
"command": "-workbench.action.showAllSymbols" | |
}, | |
{ | |
"key": "ctrl+t", | |
"command": "extension.transpose" | |
}, | |
{ | |
"key": "ctrl+shift+c", | |
"command": "extension.colorHelper.pick", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+c p", | |
"command": "-extension.colorHelper.pick", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+c", | |
"command": "-workbench.action.terminal.openNativeConsole", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+shift+l", | |
"command": "workbench.action.editor.changeLanguageMode" | |
}, | |
{ | |
"key": "ctrl+k m", | |
"command": "-workbench.action.editor.changeLanguageMode" | |
} | |
,{ | |
"key": "shift+space", | |
"command": "cursorRight", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "f5", | |
"command": "git.sync" | |
}, | |
{ | |
"key": "ctrl+shift+e", | |
"command": "editor.action.addSelectionToNextFindMatch" | |
}, | |
{ | |
"key": "f10", | |
"command": "-extension.node-debug.startWithStopOnEntry", | |
"when": "!inDebugMode && debugConfigurationType == 'node'" | |
}, | |
{ | |
"key": "f10", | |
"command": "-workbench.action.debug.stepOver", | |
"when": "debugState == 'stopped'" | |
}, | |
{ | |
"key": "f6", | |
"command": "workbench.action.terminal.runActiveFile" | |
}, | |
{ | |
"key": "ctrl+shift+w", | |
"command": "-workbench.action.closeWindow" | |
}, | |
{ | |
"key": "alt+c", | |
"command": "-toggleSearchCaseSensitive", | |
"when": "searchViewletFocus && searchViewletVisible && !fileMatchOrFolderMatchFocus" | |
}, | |
{ | |
"key": "alt+c", | |
"command": "-gitlens.showQuickCommitFileDetails", | |
"when": "editorTextFocus && gitlens:enabled && config.gitlens.keymap == 'alternate'" | |
}, | |
{ | |
"key": "alt+c", | |
"command": "-toggleFindCaseSensitive", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+f2", | |
"command": "-editor.action.changeAll", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+f5", | |
"command": "-workbench.action.debug.run" | |
}, | |
{ | |
"key": "alt+w", | |
"command": "-toggleFindWholeWord", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+d", | |
"command": "editor.action.duplicateSelection" | |
}, | |
{ | |
"key": "ctrl+shift+h", | |
"command": "-workbench.action.replaceInFiles" | |
}, | |
{ | |
"key": "f3", | |
"command": "-workbench.action.terminal.findNext", | |
"when": "terminalFindWidgetFocused" | |
}, | |
{ | |
"key": "f3", | |
"command": "-workbench.action.terminal.findNext", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "f3", | |
"command": "-editor.action.nextMatchFindAction", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "f4", | |
"command": "-goToNextReference", | |
"when": "inReferenceSearchEditor || referenceSearchVisible" | |
}, | |
{ | |
"key": "ctrl+shift+g", | |
"command": "-workbench.view.scm" | |
}, | |
{ | |
"key": "f11", | |
"command": "-workbench.action.debug.stepInto", | |
"when": "debugState != 'inactive'" | |
}, | |
{ | |
"key": "f11", | |
"command": "-workbench.action.toggleFullScreen" | |
}, | |
{ | |
"key": "f8", | |
"command": "-editor.action.marker.nextInFiles", | |
"when": "editorFocus && !editorReadonly" | |
}, | |
{ | |
"key": "f12", | |
"command": "-editor.action.revealDefinition", | |
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" | |
}, | |
{ | |
"key": "f2", | |
"command": "-editor.action.rename", | |
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "f2", | |
"command": "-renameFile", | |
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus" | |
}, | |
{ | |
"key": "f2", | |
"command": "-debug.renameWatchExpression", | |
"when": "watchExpressionsFocused" | |
}, | |
{ | |
"key": "f2", | |
"command": "-debug.setVariable", | |
"when": "variablesFocused" | |
}, | |
{ | |
"key": "f2", | |
"command": "-remote.tunnel.label", | |
"when": "tunnelViewFocus && tunnelType == 'Forwarded'" | |
}, | |
{ | |
"key": "f4", | |
"command": "-search.action.focusNextSearchResult", | |
"when": "hasSearchResult || inSearchEditor" | |
}, | |
{ | |
"key": "f12", | |
"command": "-editor.gotoNextSymbolFromResult", | |
"when": "hasSymbols" | |
}, | |
{ | |
"key": "f12", | |
"command": "-goToNextReference", | |
"when": "inReferenceSearchEditor || referenceSearchVisible" | |
}, | |
{ | |
"key": "ctrl+f2", | |
"command": "-editor.action.changeAll", | |
"when": "editorTextFocus && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+f3", | |
"command": "-editor.action.nextSelectionMatchFindAction", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+f4", | |
"command": "-workbench.action.closeActiveEditor" | |
}, | |
{ | |
"key": "ctrl+f4", | |
"command": "-workbench.action.closeGroup", | |
"when": "activeEditorGroupEmpty && multipleEditorGroups" | |
}, | |
{ | |
"key": "ctrl+f4", | |
"command": "-extension.node-debug.pickLoadedScript", | |
"when": "debugType == 'node2'" | |
}, | |
{ | |
"key": "ctrl+shift+f", | |
"command": "-workbench.view.search", | |
"when": "!searchViewletVisible" | |
}, | |
{ | |
"key": "ctrl+alt+f11", | |
"command": "-workbench.action.focusLastEditorGroup" | |
}, | |
{ | |
"key": "ctrl+alt+f12", | |
"command": "-workbench.panel.terminal.focus" | |
}, | |
{ | |
"key": "alt+c", | |
"command": "-toggleSearchEditorCaseSensitive", | |
"when": "inSearchEditor && searchInputBoxFocus" | |
}, | |
{ | |
"key": "alt+c", | |
"command": "-toggleSearchCaseSensitive", | |
"when": "searchViewletFocus && !fileMatchOrFolderMatchFocus" | |
}, | |
{ | |
"key": "alt+c", | |
"command": "-markdown.extension.checkTaskList", | |
"when": "editorTextFocus && editorLangId == 'markdown'" | |
}, | |
{ | |
"key": "alt+c", | |
"command": "-workbench.action.terminal.toggleFindCaseSensitive", | |
"when": "terminalFindWidgetFocused || terminalFocus" | |
}, | |
{ | |
"key": "ctrl+oem_3", | |
"command": "-workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "ctrl+shift+f", | |
"command": "-workbench.action.findInFiles" | |
}, | |
{ | |
"key": "ctrl+shift+v", | |
"command": "-workbench.action.terminal.paste", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+shift+c", | |
"command": "-workbench.action.terminal.copySelection", | |
"when": "terminalFocus && terminalTextSelected" | |
}, | |
{ | |
"key": "ctrl+shift+space", | |
"command": "-editor.action.triggerParameterHints", | |
"when": "editorHasSignatureHelpProvider && editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+space", | |
"command": "-issue.suggestRefresh", | |
"when": "suggestWidgetVisible" | |
}, | |
{ | |
"key": "ctrl+k ctrl+o", | |
"command": "-workbench.action.files.openFolder" | |
}, | |
{ | |
"key": "ctrl+o", | |
"command": "-workbench.action.files.openFile" | |
}, | |
{ | |
"key": "f1", | |
"command": "editor.action.insertSnippet" | |
}, | |
{ | |
"key": "ctrl+k ctrl+m", | |
"command": "-workbench.extensions.action.showRecommendedKeymapExtensions" | |
}, | |
{ | |
"key": "ctrl+k ctrl+t", | |
"command": "-workbench.action.selectTheme" | |
}, | |
{ | |
"key": "f9", | |
"command": "-editor.debug.action.toggleBreakpoint", | |
"when": "debuggersAvailable && editorTextFocus" | |
}, | |
{ | |
"key": "f5", | |
"command": "-workbench.action.debug.start", | |
"when": "debuggersAvailable && !inDebugMode" | |
}, | |
{ | |
"key": "f9", | |
"command": "editor.action.showHover" | |
}, | |
{ | |
"key": "escape", | |
"command": "search.action.clearSearchResults", | |
"when": "focusedView == workbench.view.search" | |
}, | |
{ | |
"key": "alt+w", | |
"command": "editor.emmet.action.wrapWithAbbreviation" | |
}, | |
{ | |
"key": "ctrl+alt+w", | |
"command": "editor.emmet.action.wrapIndividualLinesWithAbbreviation" | |
}, | |
{ | |
"key": "f2", | |
"command": "extension.startExtension" | |
}, | |
{ | |
"key": "ctrl+shift+b", | |
"command": "-workbench.action.tasks.build" | |
}, | |
{ | |
"key": "ctrl+shift+b", | |
"command": "bookmarks.toggle", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+k", | |
"command": "-bookmarks.toggle", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "shift+delete", | |
"command": "-editor.action.clipboardCutAction" | |
}, | |
{ | |
"key": "alt+f1", | |
"command": "-editor.action.showAccessibilityHelp" | |
}, | |
{ | |
"key": "alt+f1", | |
"command": "workbench.action.openSnippets" | |
}, | |
{ | |
"key": "alt+w", | |
"command": "-toggleSearchEditorWholeWord", | |
"when": "inSearchEditor && searchInputBoxFocus" | |
}, | |
{ | |
"key": "alt+w", | |
"command": "-workbench.action.terminal.toggleFindWholeWord", | |
"when": "terminalFindFocused && terminalProcessSupported || terminalFocus && terminalProcessSupported" | |
}, | |
{ | |
"key": "alt+w", | |
"command": "-toggleSearchWholeWord", | |
"when": "searchViewletFocus" | |
}, | |
{ | |
"key": "alt+w", | |
"command": "-extension.htmlTagWrap", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+d", | |
"command": "-editor.action.addSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "shift+alt+r", | |
"command": "revealFileInOS" | |
}, | |
{ | |
"key": "shift+alt+r", | |
"command": "-revealFileInOS", | |
"when": "!editorFocus" | |
}, | |
{ | |
"key": "f3", | |
"command": "-workbench.action.terminal.findNext", | |
"when": "terminalFindFocused && terminalProcessSupported || terminalFocus && terminalProcessSupported" | |
}, | |
{ | |
"key": "f4", | |
"command": "-references-view.next", | |
"when": "reference-list.hasResult && references-view.canNavigate" | |
}, | |
{ | |
"key": "f6", | |
"command": "-workbench.action.focusNextPart" | |
}, | |
{ | |
"key": "alt+f5", | |
"command": "-workbench.action.editor.nextChange", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+f5", | |
"command": "-workbench.action.compareEditor.nextChange", | |
"when": "textCompareEditorVisible" | |
}, | |
{ | |
"key": "shift+alt+f5", | |
"command": "-workbench.action.editor.previousChange", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+f", | |
"command": "-workbench.action.terminal.searchWorkspace", | |
"when": "terminalFocus && terminalProcessSupported && terminalProcessSupported && terminalTextSelected" | |
}, | |
{ | |
"key": "ctrl+o", | |
"command": "-workbench.action.files.openLocalFile", | |
"when": "remoteFileDialogVisible" | |
}, | |
{ | |
"key": "shift+delete", | |
"command": "-deleteFile", | |
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceReadonly && !inputFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+l", | |
"command": "-editor.toggleFold", | |
"when": "editorTextFocus && foldingEnabled" | |
}, | |
{ | |
"key": "ctrl+k ctrl+u", | |
"command": "-editor.action.removeCommentLine", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "alt+f5", | |
"command": "editor.action.transformToLowercase" | |
}, | |
{ | |
"key": "alt+f7", | |
"command": "editor.action.transformToUppercase" | |
}, | |
{ | |
"key": "alt+f6", | |
"command": "editor.action.transformToTitlecase" | |
}, | |
{ | |
"key": "ctrl+alt+l", | |
"command": "-bookmarks.jumpToNext", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+e", | |
"command": "editor.action.selectHighlights", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+shift+l", | |
"command": "-editor.action.selectHighlights", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+alt+o", | |
"command": "workbench.action.showAllSymbols" | |
}, | |
{ | |
"key": "shift+f3", | |
"command": "-editor.action.previousMatchFindAction", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+alt+e", | |
"command": "selectAllSearchEditorMatches", | |
"when": "inSearchEditor" | |
}, | |
{ | |
"key": "ctrl+shift+l", | |
"command": "-selectAllSearchEditorMatches", | |
"when": "inSearchEditor" | |
}, | |
{ | |
"key": "ctrl+k ctrl+r", | |
"command": "-git.revertSelectedRanges", | |
"when": "isInDiffEditor" | |
}, | |
{ | |
"key": "ctrl+k ctrl+r", | |
"command": "-workbench.action.keybindingsReference" | |
}, | |
{ | |
"key": "ctrl+k ctrl+r", | |
"command": "editor.emmet.action.removeTag" | |
}, | |
{ | |
"key": "Escape", | |
"command": "workbench.explorer.fileView.focus", | |
"when": "!editorFocus" | |
}, | |
{ | |
"key": "f3", | |
"command": "bookmarks.jumpToPrevious", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+j", | |
"command": "-bookmarks.jumpToPrevious", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "f4", | |
"command": "bookmarks.jumpToNext" | |
} | |
] |
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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.tabSize": 2, | |
"editor.cursorBlinking": "solid", | |
"editor.cursorWidth": 2, | |
"editor.scrollBeyondLastLine": false, | |
"editor.smoothScrolling": true, | |
"editor.renderLineHighlight": "none", | |
"editor.folding": false, | |
"editor.tokenColorCustomizations": { | |
"[Default Dark+]": { | |
"strings": "#79ba79", | |
"numbers": "#79ba79", | |
"comments": "#e68a8a", | |
"variables": "#d4d4d4ff", | |
"keywords": "#d4d4d4ff", | |
"functions": "#e1e68a", | |
"textMateRules": [ | |
{ | |
"scope": "entity.name.tag", | |
"settings": { | |
"foreground": "#8cc3ff", | |
"fontStyle": "" | |
} | |
}, | |
{ | |
"scope": "entity.other.attribute-name", | |
"settings": { | |
"foreground": "#ffc68c", | |
"fontStyle": "" | |
} | |
}, | |
{ | |
"scope": "punctuation.definition.tag", | |
"settings": { | |
"foreground": "#8cc3ff", | |
"fontStyle": "" | |
} | |
}, | |
{ | |
"scope": "markup.heading", | |
"settings": { | |
"foreground": "#8cc3ff", | |
"fontStyle": "" | |
} | |
}, | |
{ | |
"scope": "markup.bold", | |
"settings": { | |
"foreground": "#d4d4d4ff", | |
"fontStyle": "bold" | |
} | |
}, | |
{ | |
"scope": "support.type.property-name", | |
"settings": { | |
"foreground": "#8cc3ff", | |
"fontStyle": "" | |
} | |
}, | |
{ | |
"scope": "constant.language", | |
"settings": { | |
"foreground": "#ffc68c", | |
"fontStyle": "" | |
} | |
}, | |
// background-color pas encore supporté | |
// {"scope": "text.html.hugo", "settings": { | |
// "foreground": "", "background": "#ffffff", "fontStyle": ""}}, | |
{ | |
"scope": "punctuation.section.embedded", | |
"settings": { | |
"foreground": "#c586c0ff", | |
"fontStyle": "" | |
} | |
} | |
] | |
} | |
}, | |
"explorer.autoReveal": false, | |
"search.useReplacePreview": false, | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"terminal.integrated.cursorStyle": "line", | |
"editor.occurrencesHighlight": false, | |
"workbench.editor.highlightModifiedTabs": true, | |
"git.confirmSync": false, | |
"sync.autoUpload": true, | |
"sync.autoDownload": true, | |
"sync.quietSync": true, | |
"sync.removeExtensions": false, | |
"sync.syncExtensions": false, | |
"sync.gist": "1b8b7717469c2648bacb57a1498dd84e", | |
"workbench.colorCustomizations": { | |
"[Default Dark+]": { | |
"focusBorder": "#ffffff00", | |
"editorCursor.foreground": "#ffffff", | |
"terminalCursor.foreground": "#ffffff", | |
"editor.inactiveSelectionBackground": "#ffffff16", | |
"scrollbarSlider.background": "#424242", | |
"scrollbarSlider.hoverBackground": "#424242", | |
"scrollbarSlider.activeBackground": "#424242", | |
"editorLineNumber.foreground": "#ffffff50", | |
"editorLineNumber.activeForeground": "#ffffff50", | |
"editorOverviewRuler.addedForeground": "#0000", | |
"editorOverviewRuler.modifiedForeground": "#0000", | |
"editorOverviewRuler.deletedForeground": "#0000", | |
"editorOverviewRuler.errorForeground": "#0000", | |
"editorOverviewRuler.warningForeground": "#0000", | |
"editorOverviewRuler.infoForeground": "#0000", | |
"inputOption.activeBackground": "#0e639c", | |
"editor.linkedEditingBackground": "#ffffff00" | |
} | |
}, | |
"window.menuBarVisibility": "default", | |
// "files.exclude": { | |
// ".editorconfig": true, | |
// ".faunarc": true, | |
// ".gitignore": true, | |
// ".netlify/": true, | |
// "**/node_modules/": true, | |
// "**/package-lock.json": true, | |
// "resources/": true | |
// }, | |
"projectManager.sortList": "Recent", | |
"workbench.sideBar.location": "left", | |
"projectManager.groupList": true, | |
"workbench.panel.defaultLocation": "right", | |
"workbench.tips.enabled": false, | |
"terminal.integrated.rightClickBehavior": "default", | |
"terminal.external.windowsExec": "", | |
"workbench.activityBar.visible": true, | |
"sortLines.sortEntireFile": true, | |
"editor.scrollbar.vertical": "visible", | |
"editor.scrollbar.horizontal": "visible", | |
// "editor.scrollbar.verticalScrollbarSize": 15, | |
"git.autofetchPeriod": 5, | |
"git.autoStash": true, | |
"editor.links": true, | |
"explorer.confirmDragAndDrop": false, | |
"git.enableSmartCommit": true, | |
"projectManager.showProjectNameInStatusBar": false, | |
"colorHelper.disableGpu": 1, | |
"[markdown]": { | |
"editor.quickSuggestions": true | |
}, | |
"workbench.editor.closeOnFileDelete": true, | |
"workbench.editor.tabCloseButton": "off", | |
"wrapSelection.patterns": { | |
"snip": "\"${text}\"," | |
}, | |
"window.enableMenuBarMnemonics": false, | |
"markdown.preview.doubleClickToSwitchToEditor": false, | |
"cSpell.allowCompoundWords": true, | |
"cSpell.showStatus": false, | |
"cSpell.enabledLanguageIds": ["html", "markdown", "text"], | |
"breadcrumbs.enabled": false, | |
"cSpell.userWords": [], | |
"gutterpreview.showImagePreviewOnGutter": false, | |
"editor.parameterHints.enabled": false, | |
"editor.renderIndentGuides": false, | |
"workbench.tree.renderIndentGuides": "none", | |
"sync.forceUpload": true, | |
"emmet.excludeLanguages": [], | |
"emmet.includeLanguages": { | |
"markdown": "html", | |
"scss": "scss" | |
}, | |
"html.autoClosingTags": false, | |
"editor.autoClosingQuotes": "beforeWhitespace", | |
"colorHelper.disableShadow": true, | |
"editor.colorDecorators": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.currentLine.enabled": false, | |
"gitlens.hovers.enabled": false, | |
"gitlens.codeLens.enabled": false, | |
"gitlens.menus": { | |
"editorGroup": { | |
"blame": false, | |
"compare": false | |
} | |
}, | |
"gitlens.statusBar.enabled": false, | |
"gitlens.views.repositories.avatars": false, | |
"gitlens.views.fileHistory.avatars": false, | |
"gitlens.views.lineHistory.avatars": false, | |
"gitlens.views.search.avatars": false, | |
"gitlens.views.search.files.layout": "list", | |
"gitlens.views.compare.files.layout": "list", | |
"gitlens.mode.statusBar.enabled": false, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"gitlens.views.repositories.compact": true, | |
"workbench.view.alwaysShowHeaderActions": true, | |
"gitlens.views.formats.commits.label": "${message}${ ⮜ tips}", | |
"gitlens.views.formats.commits.description": "${author}, ${agoOrDate}", | |
"highlight-matching-tag.highlightFromContent": true, | |
"highlight-matching-tag.styles": { | |
"opening": { | |
"name": { | |
"underline": "white", | |
"right": { | |
"underline": "white" | |
} | |
} | |
} | |
}, | |
"terminal.integrated.shell.windows": "C:\\Program Files\\PowerShell\\6\\pwsh.exe", | |
"diffEditor.renderIndicators": false, | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": true, | |
"strings": true | |
}, | |
"gitlens.views.compare.avatars": false, | |
"gitlens.views.showRelativeDateMarkers": false, | |
"editor.tabCompletion": "on", | |
"editor.suggest.showIcons": false, | |
"scm.alwaysShowActions": true, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.overviewRulerBorder": false, | |
"color-highlight.markRuler": false, | |
"highlight-matching-tag.showRuler": false, | |
"editor.minimap.showSlider": "always", | |
"markdown.preview.scrollEditorWithPreview": false, | |
"editor.minimap.enabled": false, | |
"scm.diffDecorations": "none", | |
"cSpell.maxDuplicateProblems": 2, | |
"cSpell.maxNumberOfProblems": 999, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"gitlens.views.repositories.includeWorkingTree": false, | |
"git.autofetch": true, | |
"editor.acceptSuggestionOnEnter": "off", | |
"cSpell.language": "en,fr", | |
"outline.problems.badges": false, | |
"problems.decorations.enabled": false, | |
"git.autoRepositoryDetection": "subFolders", | |
"editor.autoClosingBrackets": "beforeWhitespace", | |
"liveServer.settings.CustomBrowser": "firefox", | |
"liveServer.settings.donotVerifyTags": true, | |
"explorer.confirmDelete": false, | |
"editor.padding.bottom": 5, | |
"editor.padding.top": 5, | |
"editor.renderWhitespace": "none", | |
"timeline.excludeSources": [], | |
"github-actions.workflows.pinned.refresh.enabled": true, | |
"github-actions.workflows.pinned.refresh.interval": 5, | |
"workbench.iconTheme": null, | |
"workbench.list.smoothScrolling": true, | |
"window.zoomLevel": 0.7, | |
"firefox.executable": "C:\\Program Files\\Firefox Developer Edition\\firefox.exe", | |
"debug.javascript.codelens.npmScripts": "never", | |
"explorer.compactFolders": false, | |
"cSpell.enabled": true, | |
"projectManager.git.baseFolders": ["C:\\Users\\arkay\\Documents\\1_repos"], | |
"gitlens.views.repositories.branches.layout": "list", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.wrappingStrategy": "advanced", | |
"window.title": "${rootName} ${separator} ${appName}", | |
"window.newWindowDimensions": "maximized", | |
"explorer.decorations.badges": false, | |
"editor.snippetSuggestions": "top", | |
"highlight-matching-tag.highlightSelfClosing": true, | |
"color-highlight.matchWords": true, | |
"workbench.panel.opensMaximized": "never", | |
"comments.openPanel": "openOnSessionStart", | |
"terminal.integrated.drawBoldTextInBrightColors": false, | |
"terminal.integrated.enableFileLinks": false, | |
"editor.wordWrap": "on", | |
"editor.hover.enabled": false, | |
"emmet.showAbbreviationSuggestions": false, | |
"gitlens.views.repositories.files.layout": "tree", | |
"git.defaultCloneDirectory": "C:\\Users\\arkay\\Documents\\1_repos", | |
"editor.hover.delay": 0, | |
"git.pruneOnFetch": true, | |
"editor.stickyTabStops": true, | |
"typescript.format.semicolons": "remove", | |
"tailwindCSS.emmetCompletions": true, | |
"editor.linkedEditing": true, | |
"workbench.editor.wrapTabs": true, | |
"prettier.enable": false, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"bookmarks.showCommandsInContextMenu": false | |
} |
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
{ | |
"Markdown link": { | |
"prefix": "a", | |
"body": [ | |
"[$1]($2)" | |
] | |
} | |
} |
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 snippets for plaintext here. Each snippet is defined under a snippet name and has a prefix, body and | |
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
// same ids are connected. | |
// Example: | |
// "Print to console": { | |
// "prefix": "log", | |
// "body": [ | |
// "console.log('$1');", | |
// "$2" | |
// ], | |
// "description": "Log output to console" | |
// } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment