Add VSCode configuration.
This commit is contained in:
60
settings.json
Normal file
60
settings.json
Normal file
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"security.workspace.trust.enabled": false,
|
||||
"editor.minimap.size": "fit",
|
||||
"editor.renderWhitespace": "all",
|
||||
"editor.minimap.showSlider": "always",
|
||||
"omnisharp.useModernNet": false,
|
||||
"omnisharp.enableEditorConfigSupport": false,
|
||||
"search.exclude": {
|
||||
"**/obj/*": true,
|
||||
"**/wwwroot/*": true
|
||||
},
|
||||
"emeraldwalk.runonsave": {
|
||||
"commands": [
|
||||
{
|
||||
"match": ".*",
|
||||
"isAsync": false,
|
||||
"cmd": "${workspaceFolder}/../WebFileMergeCore"
|
||||
},
|
||||
{
|
||||
"match": "\\.txt$",
|
||||
"cmd": "echo 'I am a .txt file ${file}.'"
|
||||
},
|
||||
{
|
||||
"match": "\\.js$",
|
||||
"cmd": "echo 'I am a .js file ${file}.'"
|
||||
},
|
||||
{
|
||||
"match": ".*",
|
||||
"cmd": "echo 'I am ${env.USERNAME}.'"
|
||||
}
|
||||
]
|
||||
},
|
||||
"editor.autoClosingBrackets": "never",
|
||||
"editor.autoClosingQuotes": "never",
|
||||
"vscode_custom_css.imports": [
|
||||
"file:///C:/Users/Damian/Documents/customVsCodeCss/custom.css"
|
||||
],
|
||||
"todo-tree.general.tags": [
|
||||
"BUG",
|
||||
"HACK",
|
||||
"FIXME",
|
||||
"TODO",
|
||||
"XXX",
|
||||
"[ ]",
|
||||
"[x]",
|
||||
"todo",
|
||||
"Todo",
|
||||
"@Todo"
|
||||
],
|
||||
"editor.rulers": [
|
||||
{"color": "purple", "column": 140}
|
||||
],
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
"workbench.colorTheme": "Default Dark+",
|
||||
"dotnet.codeLens.enableReferencesCodeLens": false,
|
||||
"extensions.autoCheckUpdates": false,
|
||||
"update.mode": "manual",
|
||||
"window.zoomLevel": 1,
|
||||
"dart.flutterSdkPath": "D:\\Programme\\FlutterSDK\\flutter"
|
||||
}
|
||||
Reference in New Issue
Block a user