VS Code
09-11-2022
Le mie estensioni e configurazioni di Visual Studio Code
DEV
09-11-2022
Le mie estensioni e configurazioni di Visual Studio Code
Le mie estensioni preferite in Visual Studio Code
Font da scaricare da Sito jetbrains.com
Il file: keybindings.json
[
{
"key": "ctrl+d",
"command": "editor.action.smartSelect.expand",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+d",
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+shift+e",
"command": "revealFileInOS"
},
{
"key": "ctrl+r",
"command": "workbench.action.gotoSymbol"
},
{
"key": "ctrl+n",
"command": "explorer.newFile"
},
{
"key": "ctrl+alt+l",
"command": "editor.action.formatDocument"
},
{
"key": "ctrl+t",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+k",
"command": "workbench.view.scm"
},
{
"key": "ctrl+e",
"command": "workbench.view.explorer"
}
]
Il file: settings.json
{
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"editor.fontSize": 16,
"editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.lineHeight": 22,
"editor.formatOnSave": false,
"editor.formatOnPaste": false,
"editor.linkedEditing": true,
"editor.suggest.insertMode": "replace",
"editor.acceptSuggestionOnCommitCharacter": false,
"files.autoSave": "onFocusChange",
"files.defaultLanguage": "markdown",
"workbench.tree.indent": 15,
"workbench.tree.renderIndentGuides": "always",
"workbench.editor.enablePreview": false,
"emmet.triggerExpansionOnTab": true,
}