forked from colonelpanic/dotfiles
recentf and helm-recentf
This commit is contained in:
parent
3c0eecbf28
commit
54753f8bcf
@ -514,6 +514,13 @@ The current directory is assumed to be the project's root otherwise."
|
|||||||
(defvar site-lisp "/usr/share/emacs24/site-lisp/")
|
(defvar site-lisp "/usr/share/emacs24/site-lisp/")
|
||||||
(when (file-exists-p site-lisp) (add-to-list 'load-dirs site-lisp))))
|
(when (file-exists-p site-lisp) (add-to-list 'load-dirs site-lisp))))
|
||||||
|
|
||||||
|
(use-package recentf
|
||||||
|
;; binding is in helm.
|
||||||
|
:config
|
||||||
|
(progn
|
||||||
|
(recentf-mode 1)
|
||||||
|
(setq recentf-max-menu-items 500)))
|
||||||
|
|
||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
;; Non-Programming Stuff
|
;; Non-Programming Stuff
|
||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
@ -782,7 +789,8 @@ The current directory is assumed to be the project's root otherwise."
|
|||||||
("M-x" . helm-M-x)
|
("M-x" . helm-M-x)
|
||||||
("C-x C-i" . helm-imenu)
|
("C-x C-i" . helm-imenu)
|
||||||
("C-h a" . helm-apropos)
|
("C-h a" . helm-apropos)
|
||||||
("C-c C-h" . helm-org-agenda-files-headings))
|
("C-c C-h" . helm-org-agenda-files-headings)
|
||||||
|
("C-c ;" . helm-recentf))
|
||||||
:init
|
:init
|
||||||
(progn
|
(progn
|
||||||
(require 'helm)
|
(require 'helm)
|
||||||
|
Loading…
Reference in New Issue
Block a user