You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
734 B
25 lines
734 B
{
|
|
// -----------------256-color ANSI SUPPORT ----------------
|
|
"terminal.integrated.shellIntegration.enabled": false,
|
|
"terminal.integrated.minimumContrastRatio": 1,
|
|
"terminal.integrated.drawBoldTextInBrightColors": false,
|
|
"workbench.colorCustomizations": {
|
|
"terminal.background": "#1f1f1f",
|
|
"terminal.ansiYellow": "#b38210" //BROWN UNIX ANSI
|
|
},
|
|
"workbench.colorTheme": "Default Dark Modern",
|
|
"editor.formatOnSave": true,
|
|
"editor.tabSize": 2, // Use 2 spaces for indentation
|
|
"editor.insertSpaces": true,
|
|
"todohighlight.enableDiagnostics": true,
|
|
"todohighlight.include": [
|
|
"**/*.js",
|
|
"**/*.html",
|
|
"**/*.css",
|
|
"**/*.rb",
|
|
"**/*.txt",
|
|
"**/*.md",
|
|
"**/*.erb",
|
|
"**/*.rake"
|
|
],
|
|
}
|