diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-03-27 19:06:02 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-03-27 19:06:02 -0400 |
commit | de7026af6ee3a937830e3854cc5c0f3c6bd324cb (patch) | |
tree | 3687d8d3e917c3f4fb767cebc63ae7699f770b60 | |
parent | e22c5fcfc9ad88db99471aa1e48f2596b534856e (diff) | |
download | emacs.d-de7026af6ee3a937830e3854cc5c0f3c6bd324cb.tar.gz |
Install and setup ido-gnus
-rw-r--r-- | lisp/init-gnus.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/init-gnus.el b/lisp/init-gnus.el index be77e81..00cc664 100644 --- a/lisp/init-gnus.el +++ b/lisp/init-gnus.el @@ -114,6 +114,11 @@ A new buffer with the patch contents is opened in another window." (select-window (gnus-get-buffer-window gnus-article-buffer)) (goto-char (point-max))) +(require-package 'ido-gnus) +(define-key gnus-group-mode-map "j" 'ido-gnus-select-group) + +(setq ido-gnus-num-articles 20) + (require 'notmuch) (require 'org-gnus) |