Setup
Install a Nerdfont to use in Visual Studio Code. I primarily use the Terminess Nerd Font.
settings.json
{
"workbench.colorTheme": "Catppuccin Mocha",
"workbench.iconTheme": "catppuccin-mocha",
"workbench.startupEditor": "none",
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
"workbench.settings.applyToAllProfiles": [],
// "workbench.colorCustomizations": {
// "editorWarning.foreground": "#FFA500",
// // "minimapGutter.modifiedBackground": "#00ffe5",
// // "editorGutter.modifiedBackground": "#00ffe5"
// },
"workbench.activityBar.location": "top",
"editor.minimap.enabled": false,
"editor.fontFamily": "Terminess Nerd Font, monospace",
"window.zoomLevel": 1,
"editor.fontSize": 16,
"editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
"terminal.integrated.smoothScrolling": true,
"editor.tabSize": 2,
"workbench.tips.enabled": false,
"editor.scrollbar.horizontalScrollbarSize": 10,
"editor.scrollbar.verticalScrollbarSize": 10,
"workbench.tree.renderIndentGuides": "always",
"typescript.preferences.quoteStyle": "single",
"editor.linkedEditing": true,
"editor.accessibilitySupport": "off",
"terminal.integrated.fontSize": 14,
"debug.console.fontSize": 14,
"diffEditor.ignoreTrimWhitespace": false,
"window.zoomPerWindow": false,
"extensions.ignoreRecommendations": true,
"workbench.editor.pinnedTabsOnSeparateRow": true,
"git.blame.editorDecoration.enabled": true,
"editor.guides.bracketPairs": true,
"editor.cursorSmoothCaretAnimation": "on",
"chat.commandCenter.enabled": false
}
workbench.json
{
"workbench.colorCustomizations": {
"statusBar.background" : "#b7ce0e",
"statusBar.foreground": "#000000",
"statusBar.noFolderBackground" : "#212121",
"statusBar.debuggingBackground": "#263238"
}
}