diff --git a/modules/programming.el b/modules/programming.el index 8c355a0..9628af7 100644 --- a/modules/programming.el +++ b/modules/programming.el @@ -20,6 +20,7 @@ '(company company-c-headers + fic-mode function-args flycheck flycheck-pos-tip @@ -95,6 +96,14 @@ (add-hook 'function-args-mode-hook #'set-function-args-keys)) + ;; -------------------------------------------------------------------------- + ;; FIC mode. + ;; -------------------------------------------------------------------------- + (use-package fic-mode + :defer t + :init + (add-hook 'prog-mode-hook #'fic-mode)) + ;; -------------------------------------------------------------------------- ;; Flycheck mode. ;; -------------------------------------------------------------------------- diff --git a/themes/havoc-common.el b/themes/havoc-common.el index a774cad..13d334c 100644 --- a/themes/havoc-common.el +++ b/themes/havoc-common.el @@ -417,6 +417,9 @@ `(term-color-white ((t (:foreground ,*term-white* :background ,*term-white*)))) `(term-color-yellow ((t (:foreground ,*term-yellow* :background ,*term-yellow*)))) + ;; fic-mode + `(fic-face ((t (:foreground ,*warning* :weight bold)))) + ) ;; Define values for colours that don't use faces.