50 lines
1.9 KiB
JSON
50 lines
1.9 KiB
JSON
{
|
|
"editor.acceptSuggestionOnEnter": "off",
|
|
"editor.accessibilitySupport": "off",
|
|
"editor.bracketPairColorization.enabled": true,
|
|
"editor.cursorBlinking": "smooth",
|
|
"editor.cursorSmoothCaretAnimation": true,
|
|
"editor.fontLigatures": false,
|
|
"explorer.confirmDelete": false,
|
|
"explorer.confirmDragAndDrop": false,
|
|
//Ref: https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers
|
|
"files.associations": {
|
|
"*.fcc": "yaml",
|
|
"*.ign": "json",
|
|
},
|
|
"glualint.activeLanguages": [
|
|
"glua",
|
|
"lua"
|
|
],
|
|
"latex.server.autoDownload": true,
|
|
"latex-workshop.bind.enter.key": false,
|
|
"latex-workshop.chktex.enabled": true,
|
|
"latex-workshop.latex.clean.subfolder.enabled": true,
|
|
"latex-workshop.message.update.show": false,
|
|
"latex-workshop.view.pdf.viewer": "tab",
|
|
"markdownlint.config": {
|
|
"MD024": {"allow_different_nesting": true},
|
|
"MD033": {"allowed_elements": ["h1", "img"]}
|
|
},
|
|
"terminal.integrated.fontFamily": "'monospace', 'PowerlineSymbols'",
|
|
"window.title": "${activeEditorShort}${separator}${rootPath}",
|
|
"workbench.colorTheme": "Better Solarized Dark",
|
|
"workbench.iconTheme": "material-icon-theme",
|
|
"workbench.startupEditor": "newUntitledFile",
|
|
"editor.suggestSelection": "first",
|
|
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
|
|
"editor.wordWrap": "on",
|
|
"editor.wrappingIndent": "deepIndent",
|
|
"svg.preview.mode": "svg",
|
|
"gitlab.instanceUrl": "https://git.histalek.de",
|
|
"go.toolsManagement.autoUpdate": true,
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
},
|
|
"[latex]": {
|
|
"editor.defaultFormatter": "James-Yu.latex-workshop"
|
|
}
|
|
}
|