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.fontFamily": "'Hack Nerd Font Mono'", | |
"terminal.integrated.fontFamily": "Hack Nerd Font Mono", | |
"editor.fontSize": 14, | |
"terminal.integrated.fontSize": 14, | |
"vim.useSystemClipboard": true, | |
"workbench.sideBar.location": "right", | |
"workbench.startupEditor": "none", | |
"editor.formatOnSave": true, | |
"editor.cursorBlinking": "expand", | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.smoothScrolling": true, | |
"terminal.integrated.cursorBlinking": true, | |
"files.trimTrailingWhitespace": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"prettier.requireConfig": true, | |
"editor.snippetSuggestions": "top", | |
"files.insertFinalNewline": true, | |
"editor.overviewRulerBorder": false, | |
"terminal.integrated.copyOnSelection": true, | |
"terminal.integrated.macOptionClickForcesSelection": true, | |
"workbench.editor.closeOnFileDelete": true, | |
"explorer.openEditors.visible": 0, | |
"explorer.confirmDragAndDrop": false, | |
"editor.minimap.renderCharacters": false, | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"editor.renderIndentGuides": false, | |
"editor.fontLigatures": true, | |
"editor.renderWhitespace": "none", | |
"workbench.tree.indent": 14, | |
"editor.emptySelectionClipboard": false, | |
"editor.renderControlCharacters": false, | |
"editor.renderLineHighlight": "none", | |
"subtleBrackets.disableNative": false, | |
"bracket-pair-colorizer-2.forceIterationColorCycle": true, | |
"editor.matchBrackets": "never", | |
"files.exclude": { | |
"**/node_modules": true, | |
"USE_GITIGNORE": true | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/coverage": true, | |
"**/dist": true, | |
"**/build": true, | |
"**/.build": true, | |
"**/.gh-pages": true | |
}, | |
"workbench.colorTheme": "In Bed by 7pm", | |
"workbench.iconTheme": "vscode-seedling-icon-theme", | |
"window.zoomLevel": 0, | |
"explorer.confirmDelete": false, | |
"[markdown]": { | |
"files.trimTrailingWhitespace": false | |
}, | |
"[mdx]": { | |
"files.trimTrailingWhitespace": false | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment