Last active
May 13, 2020 09:34
-
-
Save brrd/af394421ce19f049fdf84d9126359f0a to your computer and use it in GitHub Desktop.
github-tab-size.user.js
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
// ==UserScript== | |
// @name github-tab-size | |
// @namespace http://brrd.fr | |
// @version 0.2 | |
// @description Fix tab size in Github | |
// @author brrd | |
// @match *.github.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
// Inspiration: https://github.com/StylishThemes/GitHub-tab-size/blob/master/github-tab-size.user.css | |
(function() { | |
'use strict'; | |
var tabSize = 2; | |
GM_addStyle ( ` | |
pre, .highlight, .diff-table, .tab-size { | |
tab-size: ${tabSize} !important; | |
-moz-tab-size: ${tabSize} !important; | |
} | |
`); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment