From 8160aa1f90d93ceda2417f703344698a2e2ccbfc Mon Sep 17 00:00:00 2001 From: Christian Breunig Date: Thu, 20 Jul 2023 21:05:23 +0200 Subject: vscode: specify additional common settings for languag association and indention - add language file association (xml.i, xml.in -> XML) - add Jinja2 indention --- .vscode/settings.json | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to '.vscode') diff --git a/.vscode/settings.json b/.vscode/settings.json index 994718d2e..9b18e9996 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,4 +4,13 @@ "editor.insertSpaces": true, "files.insertFinalNewline": true, "files.eol": "\n", + "files.associations": { + "*.xml.i": "xml", + "*.xml.in": "xml", + }, + "editor.indentSize": "tabSize", + "[jinja]": { + "editor.tabSize": 4, + "editor.wordBasedSuggestions": false + } } -- cgit v1.2.3