Files
dotfiles/.config/Code/User/settings.json

40 lines
1.1 KiB
JSON

{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.bundle": true,
"**/.idea": true,
"**/.vscode": true,
"**/.packages": true,
"**/.DS_Store": true,
},
"files.autoSave": "onFocusChange",
"terminal.integrated.fontSize": 13,
"terminal.integrated.fontWeightBold": "normal",
"editor.fontSize": 13,
"editor.lineHeight": 18,
"editor.formatOnSave": true,
"editor.rulers": [
80
],
// Disable git support (and annoying popups) in IDE
"git.enabled": false,
// Disable [confusing] file icons in Explorer
"workbench.iconTheme": null,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
},
"debug.toolBarLocation": "docked",
"editor.renderWhitespace": "all",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"window.titleBarStyle": "custom",
"[javascript]": {
"editor.formatOnSave": false
},
"html.format.wrapLineLength": 80
}