Skip to content

Instantly share code, notes, and snippets.

@xavadu
Last active April 17, 2018 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xavadu/58f02ed244c2e003f3d90060edf88535 to your computer and use it in GitHub Desktop.
Save xavadu/58f02ed244c2e003f3d90060edf88535 to your computer and use it in GitHub Desktop.
VSCode settings
// Place your settings in this file to overwrite the default settings
{
// Controls the font family.
"editor.fontFamily": "'Menlo'",
// Controls the font size in pixels.
"editor.fontSize": 16,
// Controls the line height. Use 0 to compute the lineHeight from the fontSize.
"editor.lineHeight": 19,
"editor.wordWrap": "off",
"editor.autoIndent": true,
"editor.minimap.enabled": false,
"editor.renderIndentGuides": false,
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"explorer.autoReveal": false,
"files.exclude": {
".vscode": true,
"vendor": false
},
"search.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/vendor": true,
"**/public": true,
"**/bower_components": true,
"**/node_modules": true,
"/build": true
},
"workbench.editor.revealIfOpen": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.commandPalette.preserveInput": true,
"workbench.tree.horizontalScrolling": true,
"window.zoomLevel": 0,
"window.restoreWindows": "all",
"window.openFilesInNewWindow": "on",
"git.enableSmartCommit": true,
"git.autofetch": true,
"php.suggest.basic": false,
"typescript.locale": "en",
// Enable usage data and errors to be sent to Microsoft.
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
// Extensions
"trailing-spaces.highlightCurrentLine": false,
"trailing-spaces.trimOnSave": true,
"php-cs-fixer.onsave": true,
"php-cs-fixer.autoFixByBracket": false,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.codeLens.enabled": false,
"sublimeTextKeymap.promptV3Features": true,
// Dark Nova theme
"workbench.colorCustomizations": {
"editor.background": "#2D2D2D",
"sideBar.background": "#252526",
"activityBar.background": "#333333",
"editor.lineHighlightBackground": "#444440",
"input.background": "#3C3C3C",
"list.focusBackground": "#444440",
"tab.activeBackground": "#2D2D2D",
"tab.border": "#2D2D2D",
"tab.activeBorder": "#2D2D2D",
"tab.inactiveBackground": "#252526",
"editorGroup.background": "#252526",
"editorGroupHeader.noTabsBackground": "#252526",
"editorGroupHeader.tabsBackground": "#252526",
"terminal.background": "#2D2D2D",
"statusBar.background": "#333333"
},
"editor.tokenColorCustomizations": {
"[Nova]": {
"textMateRules": [
{
"scope": [
"support.function",
"entity.name.function",
"keyword.operator.assignment"
],
"settings": {
"foreground": "#DADA93"
}
},
{
"scope": [
"meta.brace.round",
"storage.type.function.arrow"
],
"settings": {
"foreground": "#F2C38F"
}
},
{
"scope": [
"meta.brace.square"
],
"settings": {
"foreground": "#7FC1CA"
}
},
{
"scope": [
"support.class",
"entity.name.class",
"entity.name.type.class"
],
"settings": {
"foreground": "#9A93E1"
}
},
{
"scope": [
"meta.definition.variable",
"meta.function.expression",
"variable.parameter",
"variable.other.readwrite source",
"variable.other.readwrite.alias",
"variable.other.object"
],
"settings": {
"foreground": "#83AFE5"
}
},
{
"scope": "support.variable.property",
"settings": {
"foreground": "#c5d4ddff"
}
}
]
}
},
"gitlens.keymap": "chorded",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"workbench.colorTheme": "Slime"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment