- 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:
parent
0aee87cf38
commit
0efdacfc6d
@ -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.
|
||||||
|
1
init.el
1
init.el
@ -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
9
lisp/init-ecb.el
Normal 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)
|
Loading…
x
Reference in New Issue
Block a user