-1

This thing i want to change fonts

Solution to this if we can change or not. If we can change then, how?

  • 1
    Does this answer your question? [How to change the font in VS Code's 'Explorer' window?](https://stackoverflow.com/questions/56202063/how-to-change-the-font-in-vs-codes-explorer-window) – Gino Mempin Nov 03 '22 at 09:30
  • Does this answer your question? [How can I change vscode sidebar font family](https://stackoverflow.com/questions/61046039/how-can-i-change-vscode-sidebar-font-family) – starball Aug 31 '23 at 03:15

1 Answers1

0

So far you can't do this by default, but there are several extensions that allow for further customization. I use Customize UI. After the installation, add the following to your user settings:

{
  "customizeUI.stylesheet": {
    ".explorer-item a": {
      "font-family": "'Victor Mono', monospace !important"
    }
  }
}

Replace the font-family with the font you want to use

toridoriv
  • 11
  • 1
  • 3