VSCode font and theme settings

1. Download fonts

Cascadia font download
image.png
Baidu network disk download link

Link: https://pan.baidu.com/s/1pKedmt0oP3GDjBuuPfjwRQ
Extraction code: 1234

2. Install fonts

image.png

3. VSCode font configuration

Method 1: Edit the setting.json file
and add"editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', monospace",

{
    
    
  "git.path": "C:\/Program Files\/Git\/cmd\/git.exe",
  "cmake.configureOnOpen": true,
  "git.confirmSync": false,
  "terminal.integrated.defaultProfile.windows": "Git Bash",
  "editor.mouseWheelZoom": true,
  "files.autoSave": "onWindowChange",
  "files.encoding": "gb2312",
  "files.autoGuessEncoding": true,
  "explorer.confirmDelete": false,
  "[markdown]": {
    
    
    "editor.defaultFormatter": "yzhang.markdown-all-in-one"
  },
  "C_Cpp.errorSquiggles": "disabled",
  "workbench.colorTheme": "Monokai Pro (Filter Machine)",
  "workbench.iconTheme": "Monokai Pro (Filter Octagon) Monochrome Icons",
  "editor.fontFamily": "'Cascadia Code',  Consolas, 'Courier New', monospace",   
  "editor.fontLigatures": true,
  "editor.fontVariations": false
}

Method 2: Open settings
image.png

4. Theme settings

One Drak Pro/Monokai Pro
1. Download the Monokai Pro plug-in and set the theme according to your preference image.png
2. Effect previewimage.png

Guess you like

Origin blog.csdn.net/Kongbobo39/article/details/131998766