todo.el 618 B

1234567891011121314151617181920212223
  1. ;; --- TODO configuration file ---
  2. ;; Highlights key-phrases like TODO and FIXME
  3. ;; Requires:
  4. (require 'package-loader)
  5. ;; Remove transpose bindings. I don't have any reasonable use for them
  6. ;; and would much rather use them for navigating TODO's.
  7. (let ((trans-chars "\C-t");; Transpose (swap) adjacent characters
  8. )
  9. (global-unset-key trans-chars))
  10. (use-package hl-todo
  11. :commands (hl-todo-mode
  12. hl-todo-next
  13. hl-todo-occur
  14. hl-todo-previous)
  15. :hook (prog-mode . hl-todo-mode)
  16. :bind (("C-t n" . hl-todo-next)
  17. ("C-t p" . hl-todo-previous)))
  18. (provide 'todo)