~edwargix/emacs.d

cc5ef93f3a0bfa915ca36f7e7956d6b2e14f8b62 — David Florness 7 years ago 64fb0a3
Setup flycheck for syntax and error checking
1 files changed, 9 insertions(+), 0 deletions(-)

M init.el
M init.el => init.el +9 -0
@@ 62,6 62,15 @@
    (define-key company-active-map (kbd "M-j") 'company-select-next)
    (define-key company-active-map (kbd "M-k") 'company-select-previous)))

;;; Syntax/error checking for GNU Emacs
(use-package flycheck
  :ensure t
  :init
  (progn
    (global-flycheck-mode)
    (evil-define-key 'normal
      flycheck-error-list-mode-map (kbd "q") 'quit-window)))

;;; Quickhelp (documentation lookup) for company
(use-package company-quickhelp
  :ensure t