Last active
July 12, 2021 11:07
-
-
Save fabricionaweb/59196b31f9c11c3b02c34d4f3a1dc02a to your computer and use it in GitHub Desktop.
VSCode Italic settings for Operator Mono
This file contains hidden or 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
{ | |
"workbench.colorTheme": "One Dark Pro", | |
"workbench.tree.renderIndentGuides": "none", | |
"terminal.integrated.fontSize": 13, | |
"terminal.integrated.fontFamily": "JetBrains Mono Light", | |
"terminal.integrated.fontWeightBold": "500", | |
"terminal.integrated.rightClickBehavior": "paste", | |
"terminal.external.osxExec": "iTerm2.app", | |
"terminal.integrated.copyOnSelection": true, | |
"editor.fontFamily": "JetBrains Mono Light", | |
"editor.fontSize": 13, | |
"editor.fontLigatures": true, | |
"editor.minimap.enabled": false, | |
"editor.renderWhitespace": "all", | |
"editor.tabSize": 2, | |
"editor.rulers": [100], | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"emmet.excludeLanguages": ["markdown"], | |
"emmet.includeLanguages": { | |
"ejs": "html" | |
}, | |
"editor.suggestSelection": "first", | |
"files.associations": { | |
".env": "ini", | |
".env.local": "ini", | |
".env.prod": "ini", | |
".env.sample": "ini" | |
}, | |
"search.exclude": { | |
"**/vendor": true | |
}, | |
"explorer.compactFolders": false, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"explorer.confirmDragAndDrop": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.detectIndentation": false, | |
"git.autofetch": true, | |
"editor.formatOnSave": true, | |
"editor.formatOnSaveMode": "file", | |
"editor.defaultFormatter": "octref.vetur", | |
"vetur.format.defaultFormatter.html": "prettier", | |
"vetur.format.defaultFormatter.css": "prettier", | |
"vetur.format.defaultFormatter.scss": "prettier", | |
"vetur.format.defaultFormatter.js": "prettier", | |
"vetur.format.defaultFormatter.ts": "prettier", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[xml]": { | |
"editor.defaultFormatter": "EditorConfig.EditorConfig" | |
}, | |
"vetur.validation.templateProps": true, | |
"editor.snippetSuggestions": "bottom", | |
"emmet.showSuggestionsAsSnippets": true, | |
"extensions.ignoreRecommendations": false, | |
"editor.accessibilitySupport": "off", | |
"jestrunner.runOptions": ["--coverage=false", "-u", "--watchAll"], | |
"prettier.resolveGlobalModules": true, | |
"explorer.confirmDelete": false, | |
"eslint.format.enable": true, | |
"breadcrumbs.enabled": false, | |
"eslint.lintTask.enable": true, | |
"editor.inlineSuggest.enabled": true, | |
"window.menuBarVisibility": "compact", | |
"terminal.integrated.defaultProfile.windows": "Ubuntu-20.04 (WSL)", | |
"git.path": "C:\\wslgit\\cmd\\wslgit.exe", | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"comment", | |
"comment.block.documentation", | |
"comment.line.double-slash", | |
"entity.other.attribute-name.js", | |
"entity.other.attribute-name.jsx", | |
"entity.other.attribute-name.ts", | |
"entity.other.attribute-name.tsx", | |
"keyword.control", | |
"keyword.control.flow.python", | |
"keyword.control.import.python", | |
"keyword.operator.new", | |
"markup.italic.markdown", | |
"markup.quote.markdown", | |
"punctuation.definition.comment", | |
"storage", | |
"var.this", | |
"variable.language.special.self", | |
"variable.language.super", | |
"variable.language.this", | |
"variable.language.this.js", | |
"variable.language.this.jsx", | |
"variable.language.this.ts", | |
"variable.language.this.tsx" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
"markup.bold", | |
"markup.bold.markdown", | |
"markup.heading", | |
"todo.bold" | |
], | |
"settings": { | |
"fontStyle": "bold" | |
} | |
}, | |
{ | |
"scope": [ | |
"entity.other.attribute-name.class.css", | |
"entity.other.attribute-name.id", | |
"storage.type.function.arrow", | |
"keyword.control.ternary", | |
"entity.name.function", | |
"meta.require", | |
"support.function.any-method", | |
"variable.function", | |
"variable.parameter" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment