Skip to content

Commit

Permalink
vsc settings update
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejs4 committed Nov 22, 2022
1 parent 94632dd commit 3f80dcb
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
// Misc
//============================
"breadcrumbs.enabled": true,
"telemetry.enableCrashReporter": false,
//============================
// Files config
//============================
Expand All @@ -19,7 +18,11 @@
"files.encoding": "utf8bom",
// for PS script UTF8 with BOM is best option (en dash and similar problematic chars don't make problems) more at https://docs.microsoft.com/cs-cz/powershell/scripting/components/vscode/understanding-file-encoding?view=powershell-6
"[powershell]": {
"files.autoGuessEncoding": true,
"files.encoding": "utf8bom",
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",
// to have working intellisense even for big repository/workspace
"editor.codeLens": false
},
//============================
// GIT
Expand All @@ -44,16 +47,17 @@
"todo-tree.highlights.customHighlight": {
"TODO": {
"icon": "check",
"background": "yellow",
"background": "#FFFF00",
"type": "whole-line",
"opacity": 20
"opacity": 20,
"foreground": "#008000"
},
"FIXME": {
"foreground": "yellow",
"background": "red",
"foreground": "#FFFF00",
"background": "#FF0000",
"type": "whole-line",
"opacity": 70,
"iconColour": "red"
"iconColour": "#FF0000"
}
},
// Error Lens
Expand All @@ -71,11 +75,13 @@
"cmdletbinding",
"endregion",
"env",
"hashtable",
"isnot",
"notcontains",
"notin",
"userdomain",
"hashtable",
"notmatch"
"notmatch",
"silentlycontinue",
"userdomain"
],
// Gitlens
"gitlens.advanced.similarityThreshold": 90,
Expand Down Expand Up @@ -114,8 +120,9 @@
//============================
// Editor
//============================
// BUGFIX nez fixnou syntax colouring
"editor.semanticHighlighting.enabled": false,
"editor.guides.bracketPairs": "active",
"editor.bracketPairColorization.enabled": false,
"editor.minimap.enabled": false,
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",
"editor.tabSize": 4,
//"editor.minimap.enabled": false,
Expand Down Expand Up @@ -165,7 +172,7 @@
// "powershell.codeFormatting.autoCorrectAliases": true,
"powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline",
"powershell.codeFormatting.trimWhitespaceAroundPipe": true,
// BUG, pokud se povoli, tak zacne nahodne mazat kusy textu!
// BUG if enabled, random strings get deleted!
// "powershell.codeFormatting.whitespaceBetweenParameters": true,
"powershell.integratedConsole.focusConsoleOnExecute": true,
"powershell.integratedConsole.showOnStartup": false,
Expand Down

0 comments on commit 3f80dcb

Please sign in to comment.