Created
May 30, 2020 08:40
-
-
Save rhiokim/5688ad6e9ef7f1f4f545d7faed7d03eb to your computer and use it in GitHub Desktop.
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
"prettifySymbolsMode.adjustCursorMovement": true, | |
"prettifySymbolsMode.substitutions": [{ | |
"language": "typescriptreact", | |
"substitutions": [ | |
{ | |
"ugly": "function", | |
"pretty": "ƒ", | |
"pre": "\\b", | |
"post": "\\b" | |
}, | |
{ | |
"ugly": "=>", | |
"pretty": "⇒" | |
}, | |
{ | |
"ugly": "\\(\\) =>", | |
"pretty": "λ", | |
}, | |
{ | |
"ugly": "return", | |
"pretty": "⟼" | |
}, | |
{ | |
"ugly": "import", | |
"pretty": "⟻" | |
}, | |
{ | |
"ugly": "yield", | |
"pretty": "⟻" | |
}, | |
{ | |
"ugly": "false", | |
"pretty": "𝔽" | |
}, | |
{ | |
"ugly": "string", | |
"pretty": "𝕊" | |
}, | |
{ | |
"ugly": "number", | |
"pretty": "ℤ" | |
}, | |
{ | |
"ugly": "boolean", | |
"pretty": "𝔹" | |
}, | |
{ | |
"ugly": "null", | |
"pretty": "∅" | |
}, | |
{ | |
"ugly": "true", | |
"pretty": "𝕋" | |
}, | |
{ | |
"ugly": "=", | |
"pretty": "=", | |
"pre": "[^<>=!]|^", | |
"post": "[^<>=]|$" | |
}, | |
{ | |
"ugly": "===", | |
"pretty": "≡" | |
}, | |
{ | |
"ugly": "!==", | |
"pretty": "≢" | |
}, | |
{ | |
"ugly": "&&", | |
"pretty": "∧" | |
}, | |
{ | |
"ugly": "\\|\\|", | |
"pretty": "∨" | |
}, | |
{ | |
"ugly": ">", | |
"pretty": ">", | |
"pre": "[^=\\-<>]|^", | |
"post": "[^=\\-<>]|$" | |
}, | |
{ | |
"ugly": "<", | |
"pretty": "<", | |
"pre": "[^=\\-<>]|^", | |
"post": "[^=\\-<>]|$" | |
}, | |
{ | |
"ugly": ">=", | |
"pretty": "≥", | |
"pre": "[^=\\-<>]|^", | |
"post": "[^=\\-<>]|$" | |
}, | |
{ | |
"ugly": "<=", | |
"pretty": "≤", | |
"pre": "[^=\\-<>]|^", | |
"post": "[^=\\-<>]|$" | |
}, | |
{ | |
"ugly": "alpha", | |
"pretty": "α", | |
"pre": "\\b", | |
"post": "\\b" | |
}, | |
{ | |
"ugly": "beta", | |
"pretty": "β", | |
"pre": "\\b", | |
"post": "\\b" | |
}, | |
{ | |
"ugly": ">>", | |
"pretty": "≫", | |
"pre": "[^=<>]|^", | |
"post": "[^=<>]|$" | |
}, | |
{ | |
"ugly": "<<", | |
"pretty": "≪", | |
"pre": "[^=<>]|^", | |
"post": "[^=<>]|$" | |
}, | |
{ | |
"ugly": "\\|", | |
"pretty": "║", | |
"pre": "^\\s+" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment