Skip to content

Instantly share code, notes, and snippets.

View dylantientcheu's full-sized avatar
🥑
Guaca

Dylan Tientcheu dylantientcheu

🥑
Guaca
View GitHub Profile
@dylantientcheu
dylantientcheu / settings.js
Last active May 19, 2019 08:33 — forked from marciobarrios/settings.js
Minimal UI for Visual Code
{
"editor.fontFamily": "'Dank Mono',Consolas, 'Courier New', monospace",
"editor.minimap.enabled": false, // removes minimap
"editor.renderWhitespace": "none", // removes whitespace chars
"editor.renderIndentGuides": false, // removes indent guides
"editor.renderLineHighlight": "none", // removes line highlight
"editor.overviewRulerBorder": false, // removes border from overview ruler (located on the right, same position as the scrollbar)
"editor.hideCursorInOverviewRuler": true, // hides cursor mark in the overview ruler
"editor.folding": false, // removes the folding feature
"editor.occurrencesHighlight": false, // removes highlights occurrences (still works when you select a word)