Created
February 5, 2021 04:02
-
-
Save vishesh/447b5faf37a89aec4da320978cd43499 to your computer and use it in GitHub Desktop.
Userscript: Github sensible tab-width
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ==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