summaryrefslogtreecommitdiff
path: root/settings/setup-flycheck.el
blob: db93a0ed3a8dba84508e6af4400c03322fc0efef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(require 'flycheck)
(require 'flycheck-pos-tip)

(global-flycheck-mode 1)

(eval-after-load 'flycheck
  '(custom-set-variables
    '(flycheck-display-errors-function #'flycheck-pos-tip-error-messages)))

(global-set-key (kbd "<f2>") 'flyspell-auto-correct-previous-word)

(provide 'setup-flycheck)