From 18ed2ea570e361783143245edf22d5d9cd3711ed Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 19 Sep 2016 16:39:56 -0700 Subject: [PATCH] [Emacs] Add proced configuration --- dotfiles/emacs.d/README.org | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 203c75f7..406c67f4 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -984,6 +984,13 @@ This makes ~forward-word~ and ~backward-word~ understand snake and camel case. (defun risky-local-variable-p (&rest args) nil) #+END_SRC +** proced +proced is an top like utility that runs inside of emacs. The following sets auto updating automatically and makes the update interval faster. +#+BEGIN_SRC emacs-lisp +(require 'proced) +(setq proced-auto-update-interval 1) +(add-hook 'proced-mode-hook (lambda () (proced-toggle-auto-update +1))) +#+END_SRC ** Misc #+BEGIN_SRC emacs-lisp (defvar iedit-toggle-key-default nil)