Skip to content

Commit

Permalink
Add vscode setting personal
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoComitre committed Aug 21, 2023
1 parent 217ef17 commit 1b1cb2a
Showing 1 changed file with 86 additions and 0 deletions.
86 changes: 86 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit 1b1cb2a

Please sign in to comment.