+proced configuration

Some bindings mostly.
This commit is contained in:
2020-09-01 23:25:09 +01:00
parent dda19ae3bc
commit e4a841d46e

View File

@@ -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,