Skip to content

Instantly share code, notes, and snippets.

@anthonybrown
Forked from developit/vscode-settings.json
Last active April 28, 2018 16:24
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 anthonybrown/7dd86035e9f524103d9c06a17cd038f3 to your computer and use it in GitHub Desktop.
Save anthonybrown/7dd86035e9f524103d9c06a17cd038f3 to your computer and use it in GitHub Desktop.
{
"window.zoomLevel": 0,
"editor.tabSize": 2,
"editor.renderWhitespace": "all",
"editor.minimap.enabled": false,
"editor.fontFamily": "Operator Mono,'Fira Code'",
"editor.fontLigatures": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.suggestFontSize": 12,
"editor.fontSize": 18,
"editor.lineHeight": 24,
"workbench.editor.swipeToNavigate": true,
"workbench.fontAliasing": "antialiased",
"telemetry.enableTelemetry": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"workbench.colorTheme": "Oceanic Next",
"eslint.autoFixOnSave": true,
"eslint.options": {
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.{css,less,sass,scss}": true,
"node_modules/**": true
}
},
"prettier.singleQuote": true,
"workbench.colorCustomizations": {
"tab.activeBorder": "#00E5E5",
"list.inactiveSelectionForeground": "#00E5E5",
"list.activeSelectionBackground": "#00a6a9"
},
"vscode_custom_css.imports": [
"file:///Users/tony/.vscode/style.css"
],
"extensions.ignoreRecommendations": true,
"extensions.autoUpdate": false,
"javascript.referencesCodeLens.enabled": false,
//"terminal.integrated.cursorStyle": "line",
"importCost.bundleSizeDecoration": "gzipped",
"importCost.smallPackageColor": "rgba(159, 192, 160, 0.30)",
"importCost.mediumPackageColor": "rgba(197, 198, 171, 0.60)",
"importCost.largePackageColor": "rgba(232, 107, 94, 0.60)",
"importCost.showCalculatingDecoration": false,
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/node_modules/babel-cli/bin/babel-node.js",
"stopOnEntry": false,
"args": [
"${file}"
]
}
]
},
"workbench.iconTheme": "vscode-icons",
"workbench.startupEditor": "newUntitledFile",
}
{
"window.zoomLevel": 0,
"editor.fontFamily": "'Source Code Pro', Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 16,
"editor.insertSpaces": false,
"editor.minimap.enabled": false,
"editor.quickSuggestionsDelay": 100,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"editor.suggestFontSize": 12,
"workbench.colorTheme": "Oceanic Next",
//"workbench.colorCustomizations": {
// "editor.background": "#2D3039"
//},
/** If you prefer a slightly darker UI: */
// "workbench.colorCustomizations": {
// "editor.background": "#262932",
// "terminal.background": "#262932",
// "panel.background": "#292C35",
// "tab.activeBackground": "#23262F",
// "sideBar.background": "#262932",
// "activityBar.background": "#262932",
// "statusBar.background": "#262932"
// },
"workbench.startupEditor": "newUntitledFile",
"eslint.autoFixOnSave": true,
"eslint.options": {
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.{css,less,sass,scss}": true,
"node_modules/**": true
}
},
"atomKeymap.promptV3Features": true,
"extensions.ignoreRecommendations": true,
"extensions.autoUpdate": false,
"javascript.referencesCodeLens.enabled": false,
//"terminal.integrated.cursorStyle": "line",
"importCost.bundleSizeDecoration": "gzipped",
"importCost.smallPackageColor": "rgba(159, 192, 160, 0.30)",
"importCost.mediumPackageColor": "rgba(197, 198, 171, 0.60)",
"importCost.largePackageColor": "rgba(232, 107, 94, 0.60)",
"importCost.showCalculatingDecoration": false,
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/node_modules/babel-cli/bin/babel-node.js",
"stopOnEntry": false,
"args": [
"${file}"
]
}
]
},
"search.useIgnoreFilesByDefault": true,
"workbench.editor.swipeToNavigate": true,
"workbench.fontAliasing": "antialiased",
"telemetry.enableTelemetry": false
}
@anthonybrown
Copy link
Author

Updated a few settings for my own tastes but basically the same as @developit wrote it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment