Skip to content

Instantly share code, notes, and snippets.

@brrd
Last active May 13, 2020 09:34
Show Gist options
  • Save brrd/af394421ce19f049fdf84d9126359f0a to your computer and use it in GitHub Desktop.
Save brrd/af394421ce19f049fdf84d9126359f0a to your computer and use it in GitHub Desktop.
github-tab-size.user.js
// ==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