From 2d33f92ec19592a30bc57d7a75bdf13280f033e3 Mon Sep 17 00:00:00 2001 From: Marc Pohling Date: Tue, 1 May 2018 17:39:17 +0200 Subject: [PATCH] added line numbers in prog-modes --- config.org | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config.org b/config.org index 8a51547..98100db 100644 --- a/config.org +++ b/config.org @@ -1470,3 +1470,10 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer." (height . 70)))) ) #+END_SRC +** Line numbers + #+BEGIN_SRC emacs-lisp +(use-package linum + :ensure t + :init + (add-hook 'prog-mode-hook 'linum-mode)) + #+END_SRC