From e4a841d46ecbf91ba5acf5373193a1f3c8ef95d1 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Tue, 1 Sep 2020 23:25:09 +0100 Subject: +proced configuration Some bindings mostly. --- Emacs/.config/emacs/config.org | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'Emacs/.config') diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index fd00206..89014c6 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -708,6 +708,26 @@ later. ("print" . "ℙ") ("lambda" . "λ") #+end_example +** Proced +Proced is the process manager for the *nix system within Emacs. This +is *different* to =list-processses=, which provides the ability to +interface with Emacs sub-processes. It's actually quite useful and can +basically replace (with some tweaks) applications like htop or top. +#+begin_src emacs-lisp +(use-package proced + :straight nil + :general + (leader + "ap" #'proced) + (general-def + :keymaps 'proced-mode-map + "U" #'proced-update + "K" #'proced-send-signal + "F" #'proced-filter-interactive) + :config + (with-eval-after-load "evil-collection" + (evil-collection-proced-setup))) +#+end_src ** Window management Window management is really important. I find the default window handling of Emacs incredibly annoying: sometimes consuming my windows, -- cgit v1.2.3-13-gbd6f