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.
10 lines
301 B
EmacsLisp
10 lines
301 B
EmacsLisp
;;----------------------------------------------------------------------------
|
|
;; ECB
|
|
;;----------------------------------------------------------------------------
|
|
(require-package 'ecb)
|
|
|
|
(custom-set-variables '(ecb-options-version "2.50"))
|
|
(setq-default ecb-tip-of-the-day nil)
|
|
|
|
(provide 'init-ecb)
|