From 9057b133b2462f9118525b2d0f57b4506b9f44f9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C3=ABl=20Hauspie?= <michael.hauspie@univ-lille.fr>
Date: Tue, 10 Nov 2020 10:11:26 +0100
Subject: [PATCH] Fix linum text size

---
 configuration.org | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/configuration.org b/configuration.org
index f19ce16..d1a060c 100644
--- a/configuration.org
+++ b/configuration.org
@@ -241,7 +241,12 @@ Some of my configuration entries where borrowed from other people, see
 ;; Highlight current line
 (global-hl-line-mode t)
 
-;; Show line number on the left hand side of the code
+;; Show line number on the left hand side of the code Set line numbers
+;; to alway be of the same same, even if we increase the font size
+;; This is useful when I stream or do lecture where I need to increase
+;; font.  As linum does not change the width of the window it uses,
+;; things gets messy if the line number font increases
+(set-face-attribute 'linum nil :height 110)
 (global-linum-mode t)
 
 ;; Show matching parenthesis
@@ -252,6 +257,9 @@ Some of my configuration entries where borrowed from other people, see
 (setq-default icon-title-format (list "%b"))
    #+END_SRC
 
+   #+RESULTS:
+   | %b |
+
 
 ** Theme
 
@@ -558,13 +566,15 @@ Some of my configuration entries where borrowed from other people, see
 ;; some HTML slide export engines
 (use-package ox-html5slide)
 (use-package ox-impress-js)
-(use-package ox-reveal )     
+(use-package ox-reveal)     
 (use-package ox-spectacle )
 
 ;; bootstrap html
 (use-package ox-twbs)
    #+end_src
 
+   #+RESULTS:
+
 
    So that code highlighting can be done using [[https://www.ctan.org/pkg/minted][minted]] (which uses
    [[https://pygments.org/][Pygments]] as an external tool), we need to change latex export commands.
-- 
GitLab