emacs.d

bloated emacs configuration
git clone git://git.ckyln.com/~cem/emacs.d.git
Log | Files | Refs | README

commit 8fd1b14dc7360bbed7ccc0b56ea04576cada4b3a
parent e8473efd67a52efafe6df32c6000e59b9c5e569b
Author: Cem Keylan <cem@ckyln.com>
Date:   Fri, 17 Jul 2020 23:45:23 +0300

hl-todo: add new package

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

diff --git a/init.org b/init.org @@ -49,7 +49,7 @@ this file itself. - [[#themes-and-buffer-customization][Themes and Buffer Customization]] - [[#doom-themes][Doom themes]] - [[#all-the-icons][All the icons]] - - [[#buffer-customizations][Buffer customizations]] + - [[#buffer-customisation][Buffer customisation]] - [[#functions][Functions]] - [[#paste-services][Paste Services]] - [[#tangle-init][Tangle Init]] @@ -868,7 +868,7 @@ guess. Pretty straightforward. :hook (dired-mode . all-the-icons-dired-mode)) #+END_SRC -** Buffer customizations +** Buffer customisation *** Modeline #+BEGIN_SRC emacs-lisp (use-package doom-modeline @@ -890,6 +890,16 @@ that you appreciate having when its time comes. (cheatsheet-add :group "Common" :key "C-x u" :description "undo-tree")) #+END_SRC +*** Highlighting TODO +I want to highlight TODO keywords, so I can continue ignoring them in a prettier +way. :) + +#+BEGIN_SRC emacs-lisp + (use-package hl-todo + :ensure t + :hook (prog-mode . hl-todo-mode)) +#+END_SRC + * Functions ** Paste Services Here are two paste-thingies that I use. I got the first code from