From cfcadd424a073133f9f3eaaa96de97f1c02d1012 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Mon, 31 May 2021 20:55:19 +0000 Subject: [PATCH] Switch to using whitespace mode global-fill-column-indicator-mode wouldn't work on kiss box --- config.org | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/config.org b/config.org index 43e7c29..f9a77cd 100644 --- a/config.org +++ b/config.org @@ -113,14 +113,16 @@ Show current column and file size. (use-package minions :config (minions-mode)) #+end_src -** Ruler -Show a ruler at a certain number of chars depending on mode. +** Whitespace mode +Highlight whitespace and other bad text practices. #+begin_src emacs-lisp - (setq display-fill-column-indicator-column 80) - (global-display-fill-column-indicator-mode) + (use-package whitespace + :custom (whitespace-style '(face lines-tail))) + (dolist (hook '(prog-mode-hook)) + (add-hook hook (lambda () (whitespace-mode 1)))) #+end_src ** Highlight todo items in comments -#+begin_src emacs-lisp ++begin_src emacs-lisp (use-package hl-todo :straight (hl-todo :type git :host github :repo "tarsius/hl-todo") :config (global-hl-todo-mode 1)) -- 2.39.2