From 0efdacfc6da7d90329acc635498a7be83e102a24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Tue, 2 Oct 2018 17:07:20 -0500 Subject: [PATCH] - Added ECB MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Emacs Code Browser (Navegador de Código de Emacs, on spanish). We present a configuration of windows in which will include a browser of files and directories, a browser of objects within our code and a history in addition to the window of our code. --- custom.el | 2 +- init.el | 1 + lisp/init-ecb.el | 9 +++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 lisp/init-ecb.el 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)