Created
March 13, 2020 19:20
-
-
Save juliofarah/8324a37cd38c5982cc792ca3195fccbd to your computer and use it in GitHub Desktop.
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
{ | |
"editor.parameterHints.enabled": false, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": false | |
}, | |
"editor.dragAndDrop": false, | |
"editor.fontFamily": "Monaco", | |
"editor.minimap.enabled": false, | |
"editor.fontLigatures": true, | |
"editor.lineNumbers": "relative", | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"terminal.external.osxExec": "iTerm.app", | |
"window.nativeTabs": true, | |
"debug.inlineValues": true, | |
"vim.hlsearch": true, | |
"vim.incsearch": true, | |
"vim.leader": "<space>", | |
"vim.normalModeKeyBindings": [ | |
{ | |
"before": [ | |
"leader", | |
"leader" | |
], | |
"commands": [ | |
{ | |
"command": ":nohl" | |
} | |
] | |
} | |
], | |
"vim.timeout": 1500, | |
"vim.foldfix": true, | |
"vim.autoindent": true, | |
"window.zoomLevel": 0, | |
"extensions.ignoreRecommendations": false, | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#5f0000", | |
"statusBar.noFolderBackground": "#5f0000", | |
"statusBar.debuggingBackground": "#5f0000" | |
}, | |
"git.autofetch": true, | |
"breadcrumbs.enabled": true, | |
"workbench.editor.highlightModifiedTabs": true, | |
"workbench.editor.closeOnFileDelete": true, | |
"zenMode.hideTabs": false, | |
"javascript.suggest.completeFunctionCalls": true, | |
"workbench.colorTheme": "Atom One Dark", | |
"editor.fontSize": 14, | |
"explorer.confirmDragAndDrop": false, | |
"typescript.suggest.completeFunctionCalls": true, | |
"javascript.format.semicolons": "remove", | |
"javascript.implicitProjectConfig.checkJs": true, | |
"javascript.implicitProjectConfig.experimentalDecorators": true, | |
"javascript.preferences.quoteStyle": "single", | |
"typescript.format.semicolons": "remove", | |
"typescript.implementationsCodeLens.enabled": true, | |
"typescript.preferences.quoteStyle": "single", | |
"tslint.configFile": "tslint.json", | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment