diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-11-20 11:58:52 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-11-20 11:58:52 -0800 |
commit | 88dda6e28a9831468fabdfd385c3da9a969a002f (patch) | |
tree | 9602a72ced35b8c0af3fbbcd17eb2fd5ce7d5f93 | |
parent | [git] update gitignore (diff) | |
download | emacs.d-88dda6e28a9831468fabdfd385c3da9a969a002f.tar.gz |
[emacs] add tooltips for flycheck.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/inits/50_flycheck.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs.d/inits/50_flycheck.el b/emacs.d/inits/50_flycheck.el index 345e717..a0823b2 100644 --- a/emacs.d/inits/50_flycheck.el +++ b/emacs.d/inits/50_flycheck.el @@ -21,3 +21,11 @@ :predicate check-source-predicate :modes (python-mode)) (add-to-list 'flycheck-checkers 'source-check))) + +(use-package flycheck-pos-tip + :defer t + :init + (progn + (eval-after-load 'feature-flycheck + '(setq-default flycheck-display-errors-function #'flycheck-pos-tip-error-messages))) + :ensure t) |