Added flycheck

This commit is contained in:
Jesús 2018-07-25 15:49:11 -05:00
parent d7d310a9ec
commit 5bc59039f8
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
3 changed files with 5 additions and 2 deletions

View File

@ -8,7 +8,7 @@
'(anzu-replace-threshold 1000)
'(anzu-replace-to-string-separator " => ")
'(anzu-search-threshold 1000)
'(package-selected-packages (quote (nlinum sublime-themes fullframe))))
'(package-selected-packages (quote (flycheck nlinum sublime-themes fullframe))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.

View File

@ -33,7 +33,8 @@
(require 'init-gui)
(require 'init-editing-utils)
(require 'init-modeline)
;;
;; Tools
(require 'init-flycheck)
;; Languages

2
lisp/init-flycheck.el Normal file
View File

@ -0,0 +1,2 @@
(require-package 'flycheck)
(provide 'init-flycheck)