Skip to content

Instantly share code, notes, and snippets.

@vishesh
Created February 5, 2021 04:02
Show Gist options
  • Select an option

  • Save vishesh/447b5faf37a89aec4da320978cd43499 to your computer and use it in GitHub Desktop.

Select an option

Save vishesh/447b5faf37a89aec4da320978cd43499 to your computer and use it in GitHub Desktop.
Userscript: Github sensible tab-width
/* ==UserStyle==
@name GitHub Tabs
@description Set sensible tabs on GitHub
@match *://github.com/*
==/UserStyle== */
.tab-size /* override GitHub’s guesses of correct tab size */ {
-moz-tab-size: 4 !important;
tab-size: 4 !important;
}
.type-ruby .tab-size, /* Ruby in files and Gists */
.file[data-file-type=".rb"] .tab-size /* Ruby in diffs */ {
-moz-tab-size: 2 !important;
tab-size: 2 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment