Skip to content
Snippets Groups Projects
Commit 9057b133 authored by Michael Hauspie's avatar Michael Hauspie
Browse files

Fix linum text size

parent 3da2fd45
No related branches found
No related tags found
No related merge requests found
......@@ -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
......@@ -565,6 +573,8 @@ Some of my configuration entries where borrowed from other people, see
(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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment