- Added ECB

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.
This commit is contained in:
Jesús 2018-10-02 17:07:20 -05:00
parent 0aee87cf38
commit 0efdacfc6d
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
3 changed files with 11 additions and 1 deletions

View File

@ -11,7 +11,7 @@
'(anzu-search-threshold 1000) '(anzu-search-threshold 1000)
'(package-selected-packages '(package-selected-packages
(quote (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
;; custom-set-faces was added by Custom. ;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.

View File

@ -34,6 +34,7 @@
(require 'init-gui) (require 'init-gui)
(require 'init-editing-utils) (require 'init-editing-utils)
(require 'init-diminish) (require 'init-diminish)
(require 'init-ecb)
(require 'init-modeline) (require 'init-modeline)
(require 'init-indent-guides) (require 'init-indent-guides)
;; Tools ;; Tools

9
lisp/init-ecb.el Normal file
View File

@ -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)