VSCode settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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