aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--custom.el2
-rw-r--r--init.el1
-rw-r--r--lisp/init-ecb.el9
3 files changed, 11 insertions, 1 deletions
diff --git a/custom.el b/custom.el
index 57f0bce..961c235 100644
--- a/custom.el
+++ b/custom.el
@@ -11,7 +11,7 @@
'(anzu-search-threshold 1000)
'(package-selected-packages
(quote
- (undo-tree pip-requirements jedi highlight-indent-guides yaml-mode whitespace-cleanup-mode sublime-themes sml-modeline smarty-mode smart-mode-line-powerline-theme scss-mode sass-mode rainbow-mode prettier-js pkgbuild-mode pcre2el nlinum markdown-mode less-css-mode flycheck editorconfig anzu ac-php))))
+ (ecb undo-tree pip-requirements jedi highlight-indent-guides yaml-mode whitespace-cleanup-mode sublime-themes sml-modeline smarty-mode smart-mode-line-powerline-theme scss-mode sass-mode rainbow-mode prettier-js pkgbuild-mode pcre2el nlinum markdown-mode less-css-mode flycheck editorconfig anzu ac-php))))
(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 1824ff8..953ba9b 100644
--- a/init.el
+++ b/init.el
@@ -34,6 +34,7 @@
(require 'init-gui)
(require 'init-editing-utils)
(require 'init-diminish)
+(require 'init-ecb)
(require 'init-modeline)
(require 'init-indent-guides)
;; Tools
diff --git a/lisp/init-ecb.el b/lisp/init-ecb.el
new file mode 100644
index 0000000..6e19113
--- /dev/null
+++ b/lisp/init-ecb.el
@@ -0,0 +1,9 @@
+;;----------------------------------------------------------------------------
+;; ECB
+;;----------------------------------------------------------------------------
+(require-package 'ecb)
+
+(custom-set-variables '(ecb-options-version "2.50"))
+(setq-default ecb-tip-of-the-day nil)
+
+(provide 'init-ecb)