Add smart-eshell mode
This commit is contained in:
parent
3ceea10587
commit
ae71fc459c
1 changed files with 17 additions and 0 deletions
17
config.org
17
config.org
|
|
@ -99,6 +99,23 @@ This will ensure things/commands/... called in eshell/shell that use $EDITOR, wi
|
||||||
(add-hook 'eshell-mode-hook 'with-editor-export-editor)))
|
(add-hook 'eshell-mode-hook 'with-editor-export-editor)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
** Eshell
|
||||||
|
|
||||||
|
*** Smart mode
|
||||||
|
|
||||||
|
Plan 9 smart terminal features, for more info:
|
||||||
|
https://www.masteringemacs.org/article/complete-guide-mastering-eshell
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(require 'eshell)
|
||||||
|
(require 'em-smart)
|
||||||
|
(setq eshell-where-to-jump 'begin)
|
||||||
|
(setq eshell-review-quick-commands nil)
|
||||||
|
(setq eshell-smart-space-goes-to-end t)
|
||||||
|
|
||||||
|
(add-hook 'eshell-mode-hook 'eshell-smart-initialize)
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
* Resize frame
|
* Resize frame
|
||||||
|
|
||||||
Minor-mode to easily resize frames (works with EXWM (firefox, ...)).
|
Minor-mode to easily resize frames (works with EXWM (firefox, ...)).
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue