From 1b1cb2af640db927db6de24aa7a2ed920eacb910 Mon Sep 17 00:00:00 2001 From: Bruno Alves Comitre Date: Sun, 20 Aug 2023 21:53:07 -0300 Subject: [PATCH] Add vscode setting personal --- .vscode/settings.json | 86 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..711103b --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,86 @@ +{ + // "terminal.integrated.fontSize": 12, + + "editor.tabSize": 2, + // "editor.fontSize": 12, + "editor.lineHeight": 16, + // "editor.fontFamily": "monospace", + "editor.minimap.enabled": false, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true + }, + + "editor.rulers": [ + { + "column": 80, + "color": "#028cb6de" + }, + { + "column": 100, // ruler with default or editorRuler.foreground color column 100 + "color": "#14bb05cb" + }, + { + "column": 120, + "color": "#ff0000de" + }, + ], + + "extensions.ignoreRecommendations": true, + + "files.exclude": { + "**/.git": true, + "**/.svn": true, + "**/.hg": true, + "**/CVS": true, + "**/.DS_Store": true, + }, + + "files.associations": { + ".stylelintrc": "json", + ".prettierrc": "json", + }, + + "gitlens.codeLens.recentChange.enabled": false, + "gitlens.codeLens.authors.enabled": false, + "gitlens.codeLens.enabled": false, + "gitlens.advanced.messages": { + "suppressLineUncommittedWarning": true + }, + + "markdown.extension.toc.updateOnSave": false, + + "typescript.tsserver.log": "verbose", + "typescript.updateImportsOnFileMove.enabled": "never", + "typescript.suggest.autoImports": true, + + "javascript.suggest.autoImports": true, + "javascript.updateImportsOnFileMove.enabled": "always", + + //"workbench.colorTheme": "One Dark Modern", + "workbench.startupEditor": "newUntitledFile", + "workbench.editor.labelFormat": "short", + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#000000", + // "activityBar.activeBorder": "#ffffff", + "activityBar.background": "#000000", + // "activityBar.foreground": "#ffffff", + // "activityBar.inactiveForeground": "#ffffff", + // "activityBarBadge.background": "#ffffff", + "activityBarBadge.foreground": "#000000", + "statusBar.background": "#000000", + // "statusBar.foreground": "#ffffff", + "statusBarItem.hoverBackground": "#000000", + "titleBar.activeBackground": "#000000", + // "titleBar.activeForeground": "#ffffff", + "titleBar.inactiveBackground": "#000000", + // "titleBar.inactiveForeground": "#ffffff", + "editor.background": "#000000", + "sideBar.background": "#000000", + // "sideBar.border": "#ffffff", + "tab.activeBackground": "#888888", + "editorGroupHeader.tabsBackground": "#000000", + "bookmarks.lineBackground": "#157EFB22", + "bookmarks.lineBorder": "#007BFF", + "bookmarks.overviewRuler": "#007BFF" + } +}