Buddha Theme for VS Code
Installation
- Open Extensions sidebar panel in VS Code.
View → Extensions
- Search for
Buddha
- find the one by Anup Jha
- Click Install to install it.
- Click Reload to reload the your editor
- Code > Preferences > Color Theme > Buddha
- Optional: Use the recommended settings below for best experience
Recommended Settings
{
"breadcrumbs.enabled": false, // Don't show breadcrumbs
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "line",
"editor.cursorWidth": 3,
"editor.folding": false, // removes the folding feature
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.fontWeight": "400",
"editor.formatOnSave": true,
"editor.glyphMargin": false, // removes the space used mainly for debugging indicators
"editor.hideCursorInOverviewRuler": true, // hides cursor mark in the overview ruler
"editor.largeFileOptimizations": false,
"editor.letterSpacing": 0.5,
"editor.lineHeight": 22,
"editor.matchBrackets": "never",
"editor.minimap.enabled": false, // disable minimap
"editor.occurrencesHighlight": false,
"editor.overviewRulerBorder": false, // removes border from overview ruler (located on the right, same position as the scrollbar)
"editor.quickSuggestions": false,
"editor.renderIndentGuides": false, // removes indent guides
"editor.renderLineHighlight": "none", // removes line highlight
"editor.renderWhitespace": "all", // removes whitespace chars
"editor.snippetSuggestions": "top",
"editor.suggestOnTriggerCharacters": false,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"eslint.alwaysShowStatus": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.openEditors.visible": 0, // removes the open editors section at the top of the sidebar, you can see the opened files with ⌘ + ⌥ + Tab
"files.exclude": {
"**/node_modules": true,
},
"files.trimTrailingWhitespace": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.validate.enable": false,
"powermode.enabled": false,
"window.zoomLevel": 1,
"workbench.activityBar.visible": false,
"workbench.colorTheme": "White Night",
"workbench.editor.showIcons": false,
"workbench.iconTheme": null,
"workbench.statusBar.visible": true,
}
Enjoy!