dotfiles/emacs/.emacs.d/init/oni-eshell-init.org

20 lines
636 B
Org Mode
Raw Normal View History

2016-11-02 11:47:56 +01:00
#+TITLE: Eshell configuration
#+BEGIN_SRC emacs-lisp
(require 'eshell)
#+END_SRC
Truncate the eshell buffer when it gets larger than
2016-11-04 12:36:41 +01:00
=eshell-buffer-maximum-lines= number of lines. For some reason I have
to use the =eshell-load-hook= instead of just relying on ~eshell.el~
and ~esh-mode.el~ being loaded because it seems that
=with-eval-after-load= loads this file before ~eshell.el~ is actually
loaded.
2016-11-02 11:47:56 +01:00
#+BEGIN_SRC emacs-lisp
2016-11-04 12:36:41 +01:00
(defun oni:enable-truncating-eshell-buffers ()
(add-to-list 'eshell-output-filter-functions 'eshell-truncate-buffer))
(add-hook 'eshell-load-hook #'oni:enable-truncating-eshell-buffers)
2016-11-02 11:47:56 +01:00
#+END_SRC