Skip to content

Instantly share code, notes, and snippets.

@marciobarrios
Last active March 5, 2023 15:25
Show Gist options
  • Save marciobarrios/3fd9554dd938825af0c341d0c30bdd74 to your computer and use it in GitHub Desktop.
Save marciobarrios/3fd9554dd938825af0c341d0c30bdd74 to your computer and use it in GitHub Desktop.

Revisions

  1. marciobarrios revised this gist May 10, 2020. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion settings.js
    Original file line number Diff line number Diff line change
    @@ -14,7 +14,7 @@
    "workbench.editor.showIcons": false, // removes icon from opened files in tabs
    "workbench.editor.tabCloseButton": "off", // removes cross icon from tabs
    "workbench.statusBar.visible": false, // removes the status bar
    "indenticator.color.dark": "rgba(255,255,255,.1)" // adds a subtle indent guide (needs Indenticator extension)
    "indenticator.color.dark": "rgba(255,255,255,.1)", // adds a subtle indent guide (needs Indenticator extension)
    "workbench.colorCustomizations": { // object that allows you to customize your color theme: https://code.visualstudio.com/docs/getstarted/theme-color-reference
    "tab.activeBorder": "#0000" // removes border to highlight active tabs (the colors formats are: #RGB, #RGBA, #RRGGBB or #RRGGBBAA)
    }
  2. marciobarrios revised this gist May 13, 2018. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions settings.js
    Original file line number Diff line number Diff line change
    @@ -15,4 +15,7 @@
    "workbench.editor.tabCloseButton": "off", // removes cross icon from tabs
    "workbench.statusBar.visible": false, // removes the status bar
    "indenticator.color.dark": "rgba(255,255,255,.1)" // adds a subtle indent guide (needs Indenticator extension)
    "workbench.colorCustomizations": { // object that allows you to customize your color theme: https://code.visualstudio.com/docs/getstarted/theme-color-reference
    "tab.activeBorder": "#0000" // removes border to highlight active tabs (the colors formats are: #RGB, #RGBA, #RRGGBB or #RRGGBBAA)
    }
    }
  3. marciobarrios revised this gist May 13, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion settings.js
    Original file line number Diff line number Diff line change
    @@ -3,7 +3,7 @@
    "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 in the right, same position as the scrollbar)
    "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)
  4. marciobarrios revised this gist May 13, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion settings.js
    Original file line number Diff line number Diff line change
    @@ -7,7 +7,7 @@
    "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)
    "editor.matchBrackets": false, // remove the highlight of matching brackets (I use Subtle Match Brackets extension for this)
    "editor.matchBrackets": false, // removes the highlight of matching brackets (I use Subtle Match Brackets extension for this)
    "editor.glyphMargin": false, // removes the space used mainly for debugging indicators
    "explorer.openEditors.visible": 0, // removes the open editors section at the top of the sidebar, you can see the opened files with ⌘ + ⌥ + Tab
    "workbench.activityBar.visible": false, // removes the activity bar (the 4 icons at the left of the screen), so now you will have to open the explorer, git, debugger and extension with shortcuts or through the Command Palette
  5. marciobarrios renamed this gist May 13, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion settings.json → settings.js
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@
    "editor.occurrencesHighlight": false, // removes highlights occurrences (still works when you select a word)
    "editor.matchBrackets": false, // remove the highlight of matching brackets (I use Subtle Match Brackets extension for this)
    "editor.glyphMargin": false, // removes the space used mainly for debugging indicators
    "explorer.openEditors.visible": 0, // removes the "open editors" section at the top of the sidebar, you can see the opened files with ⌘ + ⌥ + Tab
    "explorer.openEditors.visible": 0, // removes the open editors section at the top of the sidebar, you can see the opened files with ⌘ + ⌥ + Tab
    "workbench.activityBar.visible": false, // removes the activity bar (the 4 icons at the left of the screen), so now you will have to open the explorer, git, debugger and extension with shortcuts or through the Command Palette
    "workbench.editor.showIcons": false, // removes icon from opened files in tabs
    "workbench.editor.tabCloseButton": "off", // removes cross icon from tabs
  6. marciobarrios revised this gist May 13, 2018. No changes.
  7. marciobarrios created this gist May 13, 2018.
    18 changes: 18 additions & 0 deletions settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@
    {
    "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 in 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)
    "editor.matchBrackets": false, // remove the highlight of matching brackets (I use Subtle Match Brackets extension for this)
    "editor.glyphMargin": false, // removes the space used mainly for debugging indicators
    "explorer.openEditors.visible": 0, // removes the "open editors" section at the top of the sidebar, you can see the opened files with ⌘ + ⌥ + Tab
    "workbench.activityBar.visible": false, // removes the activity bar (the 4 icons at the left of the screen), so now you will have to open the explorer, git, debugger and extension with shortcuts or through the Command Palette
    "workbench.editor.showIcons": false, // removes icon from opened files in tabs
    "workbench.editor.tabCloseButton": "off", // removes cross icon from tabs
    "workbench.statusBar.visible": false, // removes the status bar
    "indenticator.color.dark": "rgba(255,255,255,.1)" // adds a subtle indent guide (needs Indenticator extension)
    }