# VS Code Notes The following are some notes regarding my setup within VS Code for anyone that is curious. ## Settings * **Font:** [Cascadia Code](https://github.com/microsoft/cascadia-code#installation) (with ligatures) * **Theme:** Dracula -- see Extensions below * **Workbench->Tree:Indent:** 20. I like a little more indentation than is default -- it's easier to see diferrent levels / folders * **Files->Exclude:** I omit certain things from the VS Code Explorer to make focusing on the code easier: ``` **/.git **/.svn **/.vs **/*.sln* **/*.user **/bin **/obj **/.idea ``` * **Terminal->Integrated: Font Familiy:** ['MesloLGS NF'](https://github.com/fontmgr/MesloLGSNF/tree/main/fonts). I have a [separate gist for Terminal Settings](https://gist.github.com/dahlsailrunner/ec99e195b2a4903748a74df64a1f1a94). ## Extensions * **[Dracula Official](https://marketplace.visualstudio.com/items?itemName=dracula-theme.theme-dracula):** This is the color theme I use * **[C#](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp):** C# tooling for VS Code. * **[vscode-icons](https://marketplace.visualstudio.com/items?itemName=vscode-icons-team.vscode-icons)**: This is the theme for all of the file icons seen in the explorer view * **[NuGet Package Manager](https://marketplace.visualstudio.com/items?itemName=jmrog.vscode-nuget-package-manager):** Makes it easy to add package references from command palette.