aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--custom.el2
-rw-r--r--init.el3
-rw-r--r--lisp/init-flycheck.el2
3 files changed, 5 insertions, 2 deletions
diff --git a/custom.el b/custom.el
index 0155901..540260a 100644
--- a/custom.el
+++ b/custom.el
@@ -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.
diff --git a/init.el b/init.el
index d91ea33..7ebc0d6 100644
--- a/init.el
+++ b/init.el
@@ -33,7 +33,8 @@
(require 'init-gui)
(require 'init-editing-utils)
(require 'init-modeline)
-;;
+;; Tools
+(require 'init-flycheck)
;; Languages
diff --git a/lisp/init-flycheck.el b/lisp/init-flycheck.el
new file mode 100644
index 0000000..a3f6c37
--- /dev/null
+++ b/lisp/init-flycheck.el
@@ -0,0 +1,2 @@
+(require-package 'flycheck)
+(provide 'init-flycheck)