Created
March 11, 2020 18:29
-
-
Save Izhaki/a0e33362fcfdab1725803031154e4134 to your computer and use it in GitHub Desktop.
Formal Logical Operators in VSCode
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
// Use with https://marketplace.visualstudio.com/items?itemName=siegebell.prettify-symbols-mode | |
{ | |
"prettifySymbolsMode.substitutions": [ | |
{ | |
"language": [ | |
"javascript", | |
"typescript", | |
"javascriptreact", | |
"typescriptreact" | |
], | |
"substitutions": [ | |
{ | |
"ugly": "&&", | |
"pretty": "∧", | |
}, | |
{ | |
"ugly": "||", | |
"pretty": "∨", | |
}, | |
{ | |
"ugly": "!", | |
"pretty": "¬", | |
}, | |
] | |
} | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment