Settings.json tips

1. Change the ===

  •  “editor.fontLigatures”: true,
				
					 if(1===1){
        
      }
				
			

2. Change the font

 
  • Download from google font a particular font
  • Go to the static folder. Select all the files and install.
  • In the Settings.json file update it as below
    • “editor.fontFamily”: “fira code, Consolas, ‘Courier New’, monospace,Ubuntu”
    • so here earlier it was  “editor.fontFamily”: “Consolas, ‘Courier New’, monospace,Ubuntu”
    • Now fira code is appended.
 

Leave a Comment