[Emacs] Add proced configuration

This commit is contained in:
Ivan Malison 2016-09-19 16:39:56 -07:00
parent 6a18c3fae1
commit 18ed2ea570
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -984,6 +984,13 @@ This makes ~forward-word~ and ~backward-word~ understand snake and camel case.
(defun risky-local-variable-p (&rest args) (defun risky-local-variable-p (&rest args)
nil) nil)
#+END_SRC #+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 ** Misc
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defvar iedit-toggle-key-default nil) (defvar iedit-toggle-key-default nil)