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
//-- font | |
"editor.fontFamily": "MonoLisa Variable", | |
// When lineHeight is set to zero, VS Code will figure out the | |
// the height automatically based on the font | |
"editor.lineHeight": 0, | |
// You can use standard CSS syntax here. To enable | |
// ss01 for example, you could set "'ss01' on" | |
"editor.fontSize": 12, | |
"editor.fontLigatures": "'calt' on, 'liga' on, 'ss01' on, 'ss02' on, 'ss03' on, 'ss07' on, 'ss08' on, 'ss09' on, 'ss11' on, 'ss12' on", | |
"editor.tokenColorCustomizations": { |
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
# List all installed snaps | |
snap list | |
# Remove preinstalled snaps | |
snap remove lxd | |
snap remove core18 | |
snap remove snapd | |
# Remove snap leftovers | |
rm -rf ~/snap /var/cache/snapd |
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 Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |