...
This commit is contained in:
20
.vscode/keybindings.json
vendored
Normal file
20
.vscode/keybindings.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
// Place your key bindings in this file to overwrite the defaults
|
||||
[
|
||||
{
|
||||
"key": "ctrl+l",
|
||||
"command": "editor.action.deleteLines",
|
||||
"when": "editorTextFocus && !editorReadonly"
|
||||
},{
|
||||
"key": "ctrl+shift+i",
|
||||
"command": "editor.action.toggleRenderWhitespace"
|
||||
},{
|
||||
"key": "ctrl+d",
|
||||
"command": "editor.action.copyLinesDownAction"
|
||||
},{
|
||||
"key": "alt+2",
|
||||
"command": "type",
|
||||
"args": {
|
||||
"text": "`"
|
||||
}
|
||||
}
|
||||
]
|
||||
19
.vscode/settings.json
vendored
Normal file
19
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"workbench.editor.enablePreview": false,
|
||||
"files.associations": {
|
||||
"*.vs": "cpp",
|
||||
"*.fs": "cpp"
|
||||
},
|
||||
"files.trimTrailingWhitespace": false,
|
||||
"editor.fontSize": 28,
|
||||
"editor.autoIndent": false,
|
||||
"editor.detectIndentation": false,
|
||||
"editor.insertSpaces": false,
|
||||
"editor.minimap.enabled": false,
|
||||
"editor.autoClosingBrackets": false,
|
||||
"editor.formatOnType": false,
|
||||
"editor.acceptSuggestionOnEnter": "off",
|
||||
"editor.acceptSuggestionOnCommitCharacter": false,
|
||||
"editor.mouseWheelZoom": true,
|
||||
"editor.renderWhitespace": "all",
|
||||
}
|
||||
Reference in New Issue
Block a user