Browse Source

Change to color-identifiers-mode for simpler coloring

master
Taylor Bockman 2 years ago
parent
commit
b0c07df554
  1. 8
      elisp/modes/default-modes.el

8
elisp/modes/default-modes.el

@ -2,11 +2,11 @@
;;; Code:
;; Easier to identify identifiers
;; The init add-hook seems to be the only way this works.
;; :hook does not work with rainbow identifiers for some reason.
(use-package rainbow-identifiers
(use-package color-identifiers-mode
:ensure t
:init (add-hook 'prog-mode-hook 'rainbow-identifiers-mode))
:init (add-hook 'after-init-hook 'global-color-identifiers-mode)
:config
(setq color-identifiers:recoloring-delay 1))
;; Flycheck is enabled globally.
(use-package flycheck

Loading…
Cancel
Save