Add flycheck-pos-tip

This commit is contained in:
Henrik Lissner 2016-03-04 22:38:04 -05:00
parent b2346c7e4c
commit af750954d8
2 changed files with 8 additions and 2 deletions

1
Cask
View file

@ -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")

View file

@ -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