Skip to content

Instantly share code, notes, and snippets.

@alexmachina
Created October 2, 2019 16:58
Show Gist options
  • Save alexmachina/b81ef1fe5dcda2df9a769c41b0c843d8 to your computer and use it in GitHub Desktop.
Save alexmachina/b81ef1fe5dcda2df9a769c41b0c843d8 to your computer and use it in GitHub Desktop.
{
"editor.formatOnType": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.useExperimentalGridLayout": true,
"editor.formatOnSave": false,
"eslint.autoFixOnSave": true,
"[javascript]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"window.zoomLevel": 0,
"files.associations": {
"*.js": "javascriptreact"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"window.menuBarVisibility": "toggle",
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": false,
"editor.minimap.enabled": false,
"editor.overviewRulerLanes": 3,
"breadcrumbs.enabled": false,
"workbench.editor.showTabs": true,
"workbench.sideBar.location": "right",
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.wordWrapColumn": 100,
"editor.wordWrap": "wordWrapColumn",
"editor.quickSuggestions": false,
"editor.wordBasedSuggestions": false,
"javascript.validate.enable": false,
"editor.formatOnPaste": true,
"editor.lineNumbers": "relative",
// Layout
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.verticalScrollbarSize": 0,
"scm.diffDecorations": "none",
"editor.cursorBlinking": "smooth",
"editor.fontLigatures": true,
"editor.fontFamily": "Fira Code Retina",
"workbench.colorTheme": "Dracula Soft",
"editor.renderLineHighlight": "none",
"editor.cursorSmoothCaretAnimation": true,
// /Layout
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.mouseWheelZoom": true,
"editor.autoClosingQuotes": "never",
"editor.autoClosingBrackets": "never",
"editor.renderWhitespace": "none",
"editor.renderIndentGuides": false,
"todohighlight.keywords": [
{
"text": "REFACTOR:",
"backgroundColor": "lightblue",
"color": "#252525",
"overviewRulerColor": "grey"
}
],
"editor.showUnused": false,
"workbench.editor.tabCloseButton": "right",
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"vim.disableExtension": false,
"vim.easymotion": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": false,
"vim.leader": "<space>",
"vim.incsearch": true,
"vim.easymotionMarkerBackgroundColor": "#fbc2ff",
"vim.easymotionMarkerForegroundColorOneChar": "#252525",
"vim.easymotionMarkerForegroundColorTwoChar": "#252525",
"vim.easymotionMarkerYOffset": 2,
"vim.easymotionMarkerHeight": 17,
"vim.easymotionMarkerWidthPerChar": 12,
"vim.easymotionMarkerFontFamily": "Fira Code",
"editor.tabSize": 2,
"city-lights-icons-vsc.hidesExplorerArrows": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment