From 33f15a2d38d2a631dfbc53edb2e05ac70b3349fc Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Tue, 29 Jan 2019 17:54:22 -0500 Subject: [PATCH] Display the column number in prog modes --- emacs/init.org | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emacs/init.org b/emacs/init.org index 32368fd..6b4ebd1 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -810,6 +810,11 @@ Always use =buffer-face-mode= in code and text buffers: (add-hook 'text-mode-hook #'buffer-face-mode) #+END_SRC +Display the column number in programming modes: +#+BEGIN_SRC emacs-lisp + (add-hook 'prog-mode-hook #'column-number-mode) +#+END_SRC + Load up some tasty solarized themes: #+BEGIN_SRC emacs-lisp (use-package solarized-theme)