diff options
-rw-r--r-- | custom.el | 2 | ||||
-rw-r--r-- | init.el | 1 | ||||
-rw-r--r-- | lisp/init-ecb.el | 9 |
3 files changed, 11 insertions, 1 deletions
@@ -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. @@ -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) |