Skip to content

Instantly share code, notes, and snippets.

@developit
Last active April 7, 2019 20:55
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save developit/eca90437d263a28249631c79332738dc to your computer and use it in GitHub Desktop.
Save developit/eca90437d263a28249631c79332738dc to your computer and use it in GitHub Desktop.
{
"window.zoomLevel": 0,
"editor.fontFamily": "'Source Code Pro', Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 12,
"editor.insertSpaces": false,
"editor.minimap.enabled": false,
"editor.quickSuggestionsDelay": 100,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"editor.suggestFontSize": 11,
"workbench.colorTheme": "One Dark Vivid",
"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"
}
@anthonybrown
Copy link

does it support VIM mode?

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