diff options
author | Alan Pearce | 2014-04-13 21:46:43 +0100 |
---|---|---|
committer | Alan Pearce | 2014-04-13 21:46:53 +0100 |
commit | 86f656ea85b7e1e94c9a82ec1da669f5fad8ba65 (patch) | |
tree | 9aedc407a18fdd266a7c8e04894c2f4f7ea43326 | |
parent | 57ea988a47ecb93fed90dd15a938d29255639af2 (diff) | |
download | nixfiles-86f656ea85b7e1e94c9a82ec1da669f5fad8ba65.tar.lz nixfiles-86f656ea85b7e1e94c9a82ec1da669f5fad8ba65.tar.zst nixfiles-86f656ea85b7e1e94c9a82ec1da669f5fad8ba65.zip |
Emacs: install and configure flycheck
-rw-r--r-- | tag-emacs/emacs.d/Cask | 1 | ||||
-rw-r--r-- | tag-emacs/emacs.d/init.el | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/Cask b/tag-emacs/emacs.d/Cask index e3e132cb..9718e2dd 100644 --- a/tag-emacs/emacs.d/Cask +++ b/tag-emacs/emacs.d/Cask @@ -21,6 +21,7 @@ (depends-on "emmet-mode") (depends-on "expand-region") (depends-on "flx-ido") +(depends-on "flycheck") (depends-on "framemove") (depends-on "geiser") (depends-on "ggtags") diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index cf8fb513..5094a606 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -715,6 +715,9 @@ Values: `desktop', `server', `laptop'") (global-semantic-show-unmatched-syntax-mode t) (global-semantic-decoration-mode t))) +(use-package flycheck + :init (global-flycheck-mode)) + ;;;; Projects (use-package projectile |