Created
November 25, 2019 06:18
-
-
Save vishalbasnet23/3ef8431acc00949bd07c599ea86c150b to your computer and use it in GitHub Desktop.
My VSCODE Settings
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
{ | |
"atomKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": true, | |
"editor.fontFamily": "'Victor Mono', monospace", | |
"editor.fontLigatures": true, | |
// "editor.tokenColorCustomizations": { | |
// "textMateRules": [{ | |
// "scope": [ | |
// "storage.modifier", | |
// "variable.language", | |
// "markup.italic", | |
// "punctuation.definition.keyword", | |
// "keyword.control.import", | |
// "storage.type.class", | |
// "storage.type.function", | |
// "storage.modifier" | |
// ], | |
// "settings": { | |
// "fontStyle": "italic" | |
// } | |
// }, | |
// { | |
// "scope": [ | |
// //following will be excluded from italics | |
// "comment", | |
// "invalid", | |
// "keyword.operator", | |
// "keyword.control.conditional", | |
// "storage.type.function.arrow.js" | |
// ], | |
// "settings": { | |
// "fontStyle": "" | |
// } | |
// } | |
// ] | |
// }, | |
"editor.fontWeight": "600", | |
"editor.fontSize": 16, | |
"editor.wordWrap": "on", | |
"workbench.editor.tabSizing": "shrink", | |
"workbench.iconTheme": "simple-icons", | |
"editor.tokenColorCustomizations": { | |
"[Moxer Borderline]": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"punctuation.definition.comment", | |
"comment.block", | |
"comment.line", | |
"comment.block.documentation" | |
], | |
"settings": { | |
"foreground": "#FF0000", | |
"fontStyle": "italic bold underline" | |
} | |
} | |
] | |
}, | |
}, | |
"workbench.colorCustomizations": { | |
"[Moxer Borderline]": { | |
"sideBar.background": "#000000", | |
} | |
}, | |
// Controls the font family. You need Operator Mono Font | |
// "editor.fontFamily": "Operator Mono Lig", | |
// Controls the line height. Use 0 to compute the lineHeight from the fontSize. | |
"editor.lineHeight": 30, | |
// Enables font ligatures | |
// "editor.fontLigatures": true, | |
// Controls if file decorations should use badges. | |
"explorer.decorations.badges": true, | |
"explorer.decorations.colors": false, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"workbench.colorTheme": "Moxer Borderline", | |
"bracket-pair-colorizer-2.activeScopeCSS": [ | |
"borderStyle : solid", | |
"borderWidth : 1px", | |
"borderColor : {color}", | |
"opacity: 0.5" | |
], | |
"sync.gist": "", | |
"sync.autoUpload": true, | |
"sync.autoDownload": true | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment