diff options
author | Franck Cuny <franck@fcuny.net> | 2021-09-24 08:00:19 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-09-24 08:00:19 -0700 |
commit | 69eb4e282b5546be1c8ede2640cbb98c2e940d4b (patch) | |
tree | 538b7d310f76502b3869c56144a4b76d64eea609 /emacs/custom | |
parent | emacs: initial configuration for notmuch (diff) | |
download | emacs.d-69eb4e282b5546be1c8ede2640cbb98c2e940d4b.tar.gz |
emacs: add package eshell-bookmark
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-eshell.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-eshell.el b/emacs/custom/fcuny-eshell.el index 4b39d6f..b5f3878 100644 --- a/emacs/custom/fcuny-eshell.el +++ b/emacs/custom/fcuny-eshell.el @@ -70,4 +70,10 @@ multiple eshell windows easier." (eshell-smart-space-goes-to-end t) (eshell-destroy-buffer-when-process-dies t)) +(use-package eshell-bookmark + :ensure t + :after (eshell) + :commands eshell-bookmark-setup + :hook (eshell-mode . eshell-bookmark-setup)) + (provide 'fcuny-eshell) |