Emacs: Add rainbow-mode.

This commit is contained in:
tastytea 2020-02-04 18:50:04 +01:00
parent 4c7d63534b
commit 59e5b30955

View File

@ -1,6 +1,6 @@
;;; common.el --- Common programming settings. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-02-04T18:46:17+0100>
;; Time-stamp: <2020-02-04T18:49:51+0100>
;;; Commentary:
@ -288,5 +288,10 @@ year if mode is derived from prog-mode."
(prog-mode . rainbow-delimiters-mode)
)
(use-package rainbow-mode
:hook
(prog-mode . rainbow-mode)
)
(provide 'programming/common)
;;; common.el ends here