public
Description: A mac-oriented emacs configuration bundle with batteries included: check out as ~/.emacs.d
Homepage: http://www.sanityinc.com/
Clone URL: git://github.com/purcell/emacs.d.git
purcell (author)
Sun Nov 08 01:28:35 -0800 2009
commit  2911fe29ab9fdbad192aee7caf48d75f98ca851d
tree    fb797f2e790d6fa4b51feedffb593c182a04b9b6
parent  ffd4ae89988e8638c7fd4fb8ff1ae0c60a9e464d
emacs.d / init-darcs.el
100644 13 lines (8 sloc) 0.307 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
(add-to-list 'vc-handled-backends 'DARCS)
(autoload 'vc-darcs-find-file-hook "vc-darcs")
(add-hook 'find-file-hooks 'vc-darcs-find-file-hook)
 
(load "50darcsum")
(setq darcsum-whatsnew-switches "-l")
 
(eval-after-load "grep"
  '(add-to-list 'grep-find-ignored-directories "_darcs"))
 
 
(provide 'init-darcs)