dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 598cc6523f0710d48fe43de8d90fe7c945701d0b
parent 54c53ce28be09703fb982e77036dbd02e491789d
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date:   Thu,  5 Jun 2014 14:40:41 +0200

add recent files shortcut (C-c C-r)

Diffstat:
M.emacs.d/init.el | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/.emacs.d/init.el b/.emacs.d/init.el @@ -84,6 +84,8 @@ ;; recent files with C-x C-f (require 'recentf) (recentf-mode 1) +(setq recentf-max-menu-items 25) +(global-set-key "\C-x \C-r" 'recentf-open-files) ;; color theme (load-theme 'solarized-dark t)