Skip to content

Instantly share code, notes, and snippets.

@Izhaki
Created March 11, 2020 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Izhaki/a0e33362fcfdab1725803031154e4134 to your computer and use it in GitHub Desktop.
Save Izhaki/a0e33362fcfdab1725803031154e4134 to your computer and use it in GitHub Desktop.
Formal Logical Operators in VSCode
// 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