Add flycheck-pos-tip
This commit is contained in:
parent
b2346c7e4c
commit
af750954d8
2 changed files with 8 additions and 2 deletions
1
Cask
1
Cask
|
@ -81,6 +81,7 @@
|
|||
|
||||
;; Flycheck --- core/core-flycheck.el
|
||||
(depends-on "flycheck")
|
||||
(depends-on "flycheck-pos-tip")
|
||||
(depends-on "flycheck-package")
|
||||
(depends-on "flyspell")
|
||||
|
||||
|
|
|
@ -8,8 +8,13 @@
|
|||
flycheck-check-syntax-automatically '(save mode-enabled)
|
||||
flycheck-disabled-checkers '(emacs-lisp emacs-lisp-checkdoc make))
|
||||
:config
|
||||
(require 'flycheck-package)
|
||||
(flycheck-package-setup)
|
||||
(use-package flycheck-package :config (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)
|
||||
(map! (:map flycheck-error-list-mode-map
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue