anything-config.el: anything-c-source-call-source: Add action: "Copy variable name"
[anything-config.git] / contrib / anything-startup.el
blob8f5fb9b3898a6b5ec94f4759a9dac4e66e71fb36
1 ;;; anything-startup.el --- Minimal configuration for anything.
3 ;;; $Id: anything-startup.el,v 1.10 2010-02-04 19:57:31 rubikitch Exp $
5 ;;;; Installation
7 ;;; anything.el is just a framework and predefined configuration is in
8 ;;; anything-config.el. You need install both to use anything
9 ;;; practically.
10 ;;;
11 ;;; Note: anything-config.el loads anything.el.
12 (require 'anything-config)
14 ;;; anything-match-plugin.el extends pattern matching. Some Anything
15 ;;; Applications requires it. It is a must-have plugin now.
16 ;;;
17 (require 'anything-match-plugin)
19 ;;; If you use Japanese, you should install Migemo and anything-migemo.el.
20 ;;;
21 ;;; Migemo http://0xcc.net/migemo/
22 ;;; http://www.emacswiki.org/emacs/anything-migemo.el
23 (and (equal current-language-environment "Japanese")
24 (require 'anything-migemo nil t))
26 ;;; Completion for lisp symbols and apropos.
27 (when (require 'anything-complete nil t)
28 ;; Automatically collect symbols by 150 secs
29 (anything-lisp-complete-symbol-set-timer 150))
32 (provide 'anything-startup)
34 ;; How to save (DO NOT REMOVE!!)
35 ;; (progn (magit-push) (emacswiki-post "anything-startup.el"))
36 ;;; anything-startup.el ends here