mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-05 12:37:33 -05:00
Add flycheck-pos-tip
This commit is contained in:
1
Cask
1
Cask
@ -81,6 +81,7 @@
|
|||||||
|
|
||||||
;; Flycheck --- core/core-flycheck.el
|
;; Flycheck --- core/core-flycheck.el
|
||||||
(depends-on "flycheck")
|
(depends-on "flycheck")
|
||||||
|
(depends-on "flycheck-pos-tip")
|
||||||
(depends-on "flycheck-package")
|
(depends-on "flycheck-package")
|
||||||
(depends-on "flyspell")
|
(depends-on "flyspell")
|
||||||
|
|
||||||
|
@ -8,8 +8,13 @@
|
|||||||
flycheck-check-syntax-automatically '(save mode-enabled)
|
flycheck-check-syntax-automatically '(save mode-enabled)
|
||||||
flycheck-disabled-checkers '(emacs-lisp emacs-lisp-checkdoc make))
|
flycheck-disabled-checkers '(emacs-lisp emacs-lisp-checkdoc make))
|
||||||
:config
|
:config
|
||||||
(require 'flycheck-package)
|
(use-package flycheck-package :config (flycheck-package-setup))
|
||||||
(flycheck-package-setup)
|
|
||||||
|
(use-package flycheck-pos-tip
|
||||||
|
:config
|
||||||
|
(setq flycheck-pos-tip-timeout 10
|
||||||
|
flycheck-display-errors-delay 0.5)
|
||||||
|
(flycheck-pos-tip-mode +1))
|
||||||
|
|
||||||
(evil-initial-state 'flycheck-error-list-mode 'emacs)
|
(evil-initial-state 'flycheck-error-list-mode 'emacs)
|
||||||
(map! (:map flycheck-error-list-mode-map
|
(map! (:map flycheck-error-list-mode-map
|
||||||
|
Reference in New Issue
Block a user