Skip to content

Instantly share code, notes, and snippets.

@hasannadeem
Last active January 4, 2020 10:06
Show Gist options
  • Save hasannadeem/550b3dd8df86b4043688a2070e530084 to your computer and use it in GitHub Desktop.
Save hasannadeem/550b3dd8df86b4043688a2070e530084 to your computer and use it in GitHub Desktop.
VSCode user settings and customizations.
{
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[slim]": {
"files.trimTrailingWhitespace": false
},
"breadcrumbs.filePath": "on",
"bracketPairColorizer.forceIterationColorCycle": true,
"diffEditor.ignoreTrimWhitespace": false,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.acceptSuggestionOnEnter": "off",
"editor.accessibilitySupport": "off",
"editor.cursorSmoothCaretAnimation": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": true,
"editor.folding": false,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontWeight": "400",
"editor.formatOnPaste": true,
"editor.formatOnSave": false,
"editor.letterSpacing": 0.25,
"editor.lightbulb.enabled": false,
"editor.minimap.enabled": true,
"editor.minimap.maxColumn": 100,
"editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "always",
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderControlCharacters": true,
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "all",
"editor.rulers": [
120
],
"editor.smoothScrolling": true,
"editor.snippetSuggestions": "top",
"editor.suggest.localityBonus": true,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"constant",
"entity.name.type.class",
"keyword",
"storage.modifier",
"storage.type.class.js"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"constant.numeric.css",
"constant.numeric.decimal.js",
"constant.numeric.json",
"invalid",
"keyword.operator",
"keyword.other.unit.px.css"
],
"settings": {
"fontStyle": ""
}
}
]
},
"editor.trimAutoWhitespace": true,
"editor.wordBasedSuggestions": false,
"editor.wordWrap": "off",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"jsx-sublime-babel-tags": "javascriptreact"
},
"emmet.showExpandedAbbreviation": "never",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.triggerExpansionOnTab": true,
"emojisense.languages": {
"git-commit": true,
"javascript": true,
"json": true,
"markdown": true,
"plaintext": false
},
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact"
],
"explorer.confirmDelete": false,
"files.autoSave": "onFocusChange",
"files.defaultLanguage": "markdown",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"git.enableSmartCommit": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.validate.enable": true,
"jshint.options": {"esversion": 6},
"[markdown]": {
"editor.formatOnSave": false,
"editor.quickSuggestions": true,
},
"prettier.semi": false,
"terminal.integrated.scrollback": 10000,
"todo-tree.highlights.enabled": false,
"window.customMenuBarAltFocus": false,
"window.enableMenuBarMnemonics": false,
"window.menuBarVisibility": "toggle",
"window.zoomLevel": 0,
"workbench.activityBar.visible": false,
"workbench.editor.enablePreview": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.tabSizing": "shrink",
"workbench.iconTheme": "material-icon-theme",
"editor.gotoLocation.multiple": "gotoAndPeek",
"ruby.intellisense": "rubyLocate",
"editor.fontSize": 14,
"howIVSCode.userIdentificationKey": "b87f80203d7710ca0af6d9e9f53f98",
"workbench.colorTheme": "One Monokai Dark",
"editor.autoIndent": true,
"editor.lineNumbers": "on",
"editor.scrollBeyondLastLine": false,
"workbench.editor.tabCloseButton": "on",
"editor.useTabStops": true,
"editor.wordSeparators": "./\\()\"'-:,.;<>@#$%^&*|+=[]{}`"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment