From b8a38bb24ac8adbf4e1fb8598668c9a0535cf7c3 Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Fri, 24 May 2019 13:29:55 +0000 Subject: [PATCH] add firefox tab size change --- code-style.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/code-style.md b/code-style.md index 0a33d76..4f0c500 100644 --- a/code-style.md +++ b/code-style.md @@ -7,4 +7,18 @@ * Use `foo` rather than `mFoo`, `_foo`, etc for field names * Use `foo` rather than `this.foo` unless there's also a local `foo` * `CONSTANTS_LIKE_THIS`, `variablesLikeThis` -* `AbcCamelCase` rather than `ABCCamelCase` \ No newline at end of file +* `AbcCamelCase` rather than `ABCCamelCase` + +# Firefox Tab Size in Gitlab + +Create `$HOME/.mozilla/firefox/yrj5n7s5.default/chrome/userContent.css` (if it doesn't exist) and add: + +```css +@-moz-document domain(code.briarproject.org) { + .line { + -moz-tab-size: 4; + } +} +``` + +Restart your browser and enjoy a custom tab size in Gitlab's code and diffs. \ No newline at end of file