Compare commits

...

2 Commits

Author SHA1 Message Date
David Morgan 660f61d068
Add highlight-sexp 2023-02-02 08:23:23 +00:00
David Morgan 3382598069
Don't wait for flycheck before loading flycheck-indicator 2023-02-02 08:22:34 +00:00
2 changed files with 7 additions and 1 deletions

View File

@ -23,7 +23,6 @@
simple-modeline-segment-major-mode))))
(use-package flycheck-indicator
:after flycheck
:hook (flycheck-mode . flycheck-indicator-mode)
:custom
(flycheck-indicator-icon-error 9632)

View File

@ -163,5 +163,12 @@
(set-syntax-table emacs-lisp-mode-syntax-table)
(smartparens-strict-mode)))
(use-package highlight-sexp
:diminish
:custom (hl-sexp-background-color "grey10") ;; grey25 grey30 DarkBlue navy MidnightBlue DarkSlateBlue
:hook
(emacs-lisp-mode . highlight-sexp-mode)
(clojure-mode . highlight-sexp-mode))
(provide 'init-ui)
;;; init-ui.el ends here