Automatic flycheck-mode

This commit is contained in:
Jesús 2018-08-04 12:53:25 -05:00
parent 85ba8ae6c6
commit a6556cc758
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
2 changed files with 10 additions and 0 deletions

View File

@ -8,5 +8,14 @@ Lightweight configuration of emacs with basic utilities plus personal configurat
`apt-get install markdown` or `pacman -S markdown`
### Flycheck Mode
- Require installed the languages checking, example:
`pacman -S shellcheck` # bash, sh
`pacman -S eslint` # ECMAScript
`pacman -S python-pylint` # python
### License
- [GLPv3](LICENSE)

View File

@ -1,2 +1,3 @@
(require-package 'flycheck)
(add-hook 'after-init-hook 'global-flycheck-mode)
(provide 'init-flycheck)