Emacs: Move some more things to init.org
This commit is contained in:
parent
8e5daed796
commit
f10f2a2382
2 changed files with 20 additions and 6 deletions
|
@ -8,12 +8,6 @@
|
||||||
|
|
||||||
(load (concat user-emacs-directory "init2"))
|
(load (concat user-emacs-directory "init2"))
|
||||||
|
|
||||||
(eval-after-load "eldoc"
|
|
||||||
'(diminish 'eldoc-mode))
|
|
||||||
|
|
||||||
(eval-after-load "em-term"
|
|
||||||
'(add-to-list 'eshell-visual-commands "unison"))
|
|
||||||
|
|
||||||
(eval-after-load "emms-source-file"
|
(eval-after-load "emms-source-file"
|
||||||
'(progn
|
'(progn
|
||||||
(require 'emms-setup)
|
(require 'emms-setup)
|
||||||
|
|
|
@ -326,6 +326,26 @@
|
||||||
(define-key key-translation-map (kbd "C-l") (kbd "C-j"))
|
(define-key key-translation-map (kbd "C-l") (kbd "C-j"))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
* eldoc
|
||||||
|
|
||||||
|
Diminish ~eldoc~'s lighter to nothing after it loads to keep the
|
||||||
|
mode-line clean.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp :tangle init2.el
|
||||||
|
(eval-after-load "eldoc"
|
||||||
|
'(diminish 'eldoc-mode))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
* eshell
|
||||||
|
|
||||||
|
After ~em-term.el~ loads add ~unison~ to the ~eshell-visual-commands~ to
|
||||||
|
make sure it gets unbuffered input.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp :tangle init2.el
|
||||||
|
(eval-after-load "em-term"
|
||||||
|
'(add-to-list 'eshell-visual-commands "unison"))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
* Footnotes
|
* Footnotes
|
||||||
|
|
||||||
[fn:1] Though it doesn't happen often that ~trunk~ is so messed up that
|
[fn:1] Though it doesn't happen often that ~trunk~ is so messed up that
|
||||||
|
|
Loading…
Reference in a new issue