[emacs] add Nameless

This commit is contained in:
Correl Roush 2017-12-12 14:19:15 -05:00
parent 84c3cfad9b
commit 618f7a4be4

View file

@ -542,6 +542,19 @@ Increase selected region by semantic units.
:ensure t :ensure t
:bind (("C-=" . er/expand-region))) :bind (("C-=" . er/expand-region)))
#+END_SRC #+END_SRC
*** Nameless
Hide package namespaces in emacs-lisp code.
#+BEGIN_SRC emacs-lisp
(use-package nameless
:ensure t
:commands nameless-mode-from-hook
:init
(add-hook 'emacs-lisp-mode-hook #'nameless-mode-from-hook)
:config
(setq nameless-private-prefix t))
#+END_SRC
** Libraries ** Libraries
*** Dash *** Dash
A modern list api for Emacs. No 'cl required. A modern list api for Emacs. No 'cl required.