| Revision 2062, 339 bytes checked in by iwaim, 16 years ago (diff) |
|---|
| Rev | Line | |
|---|---|---|
| [2062] | 1 | ;; |
| 2 | ;; git-init.el | |
| 3 | ;; | |
| 4 | ;; for Vine Linux with emacsen-common | |
| 5 | ;; IWAI, Masaharu <iwai@alib.jp> | |
| 6 | ||
| 7 | (defcustom vine-default-git t | |
| 8 | "A boolean for vine-default-git" | |
| 9 | :type 'boolean) | |
| 10 | ||
| 11 | (add-hook 'vine-default-setup-hook | |
| 12 | (lambda() | |
| 13 | (if vine-default-git | |
| 14 | (require 'vine-default-git)))) | |
| 15 | ||
| 16 | ;;; end of file |