mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 03:00:08 +00:00
[emacs] add Nameless
This commit is contained in:
parent
84c3cfad9b
commit
618f7a4be4
1 changed files with 13 additions and 0 deletions
|
@ -542,6 +542,19 @@ Increase selected region by semantic units.
|
|||
:ensure t
|
||||
:bind (("C-=" . er/expand-region)))
|
||||
#+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
|
||||
*** Dash
|
||||
A modern list api for Emacs. No 'cl required.
|
||||
|
|
Loading…
Reference in a new issue