aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init/oni-eshell-init.org
blob: 185043ca39a04d85ce544dee762d0986e21c42b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#+TITLE: Eshell configuration

#+BEGIN_SRC emacs-lisp
  (require 'eshell)
#+END_SRC

Truncate the eshell buffer when it gets larger than
=eshell-buffer-maximum-lines= number of lines.

#+BEGIN_SRC emacs-lisp
  (add-to-list 'eshell-output-filter-functions 'eshell-truncate-buffer)
#+END_SRC