Skip to content

Instantly share code, notes, and snippets.

@bree7e
Last active July 24, 2018 11:06
Show Gist options
  • Save bree7e/328389c20d59afb8d4523c0b782f98aa to your computer and use it in GitHub Desktop.
Save bree7e/328389c20d59afb8d4523c0b782f98aa to your computer and use it in GitHub Desktop.
VS Code Preferences
{
"window.zoomLevel": 1,
"editor.fontLigatures": true,
"editor.renderWhitespace": "boundary",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "keyword.operator",
"settings": {
"foreground": "#89DDFF"
}
}
]
},
"emmet.includeLanguages": {
"octobercms": "html"
},
"git.enableSmartCommit": true,
"workbench.sideBar.location": "left",
"workbench.colorTheme": "Material Theme High Contrast",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorCustomizations": {
"editor.background": "#1d272c",
"editorGroupHeader.tabsBackground": "#1d262a",
"editorWhitespace.foreground": "#1d272c", // theme background
"badge.foreground": "#B4B4B4",
"sideBar.foreground": "#B4B4B4",
"tab.border": "#546e7a",
"tab.inactiveBackground": "#1d262a",
// "panel.border": "#1d262a",
// "panel.background": "#1d262a"
},
"php.suggest.basic": false,
"highlight-matching-tag.style": {
"textDecoration": "underline #B4B4B4"
},
"materialTheme.cache.workbench.settings": {
"themeColours": "Default High Contrast"
},
"typescript.locale": "ru",
"material-icon-theme.activeIconPack": "angular",
"workbench.startupEditor": "newUntitledFile",
"extensions.ignoreRecommendations": true,
"prettier.singleQuote": true,
"prettier.tabWidth": 4,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"git.autofetch": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "vue",
"autoFix": true
},
],
"prettier.eslintIntegration": true,
"prettier.stylelintIntegration": true,
"files.associations": {
"*.variables": "less"
},
"gitlens.historyExplorer.enabled": true,
"liveServer.settings.port": 6000
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment