Skip to content

Commit

Permalink
[SPACEMACS] update magit highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
mpanarin committed Aug 2, 2019
1 parent 8d6afe4 commit 5f27b8e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .spacemacs
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,7 @@ dump."
(with-eval-after-load 'magit-todos
;; Disable magit-todos map as it is garbage and is bound to `j`
(setq magit-todos-section-map nil)
(setq magit-todos-keywords 'hl-todo-keyword-faces)
)
)

Expand Down Expand Up @@ -856,7 +857,7 @@ If SPLIT-ONEWINDOW is non-`nil' window is split in persistent action."
'(flyspell-duplicate ((t (:underline "DarkOrange"))))
'(flyspell-incorrect ((t (:underline "#e74c3c"))))
)
'(hl-todo-keyword-faces
(setq hl-todo-keyword-faces
'(("TODO" . "#dc752f")
("NEXT" . "#dc752f")
("THEM" . "#2d9574")
Expand All @@ -869,7 +870,9 @@ If SPLIT-ONEWINDOW is non-`nil' window is split in persistent action."
("KLUDGE" . "#b1951d")
("HACK" . "#b1951d")
("TEMP" . "#b1951d")
("FIXME" . "#dc752f")
("FIXME" . "#f2241f")
("DEPRECATE" . "#f2241f")
("DEBUG" . "#dc752f")
("XXX" . "#dc752f")
("XXXX" . "#dc752f")))
)
Expand Down

0 comments on commit 5f27b8e

Please sign in to comment.