-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.emacs
92 lines (80 loc) · 3.29 KB
/
.emacs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
;; Takaaki ISHIKAWA <[email protected]>
;; https://takaxp.github.io/init.html
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; TODO/DONE/FIXME
(with-eval-after-load "org"
;; (advice-add 'org-assert-version :override #'ignore)
;; (require 'org-phscroll nil t)
)
(with-eval-after-load "recentf"
(defun my-recentf-cleanup-silence ()
(interactive)
(my-print-message "recentf cleanup silence")
(my-print-message `("max:" ,recentf-max-saved-items))
(my-print-message `("file:" ,recentf-save-file))
(my-print-message `("items:" ,(length recentf-list)))
(let ((message-log-max nil))
(recentf-cleanup))
;; (message "")
))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Boot mode selection
;; Note: `load-path' and `exec-path' are both configured in early-init.el
(cond
;; minimal boot or DOOM Emacs (use toggle-doom.sh to switch)
(nil
(when (boundp 'ns-command-modifier) (setq ns-command-modifier 'meta))
(when (and (memq window-system '(ns mac))
(fboundp 'mac-get-current-input-source))
;; "com.apple.inputmethod.Kotoeri.RomajiTyping.Japanese" for Big Sur
(custom-set-variables
'(mac-default-input-source "com.google.inputmethod.Japanese.base"))
(mac-input-method-mode 1)
(global-set-key (kbd "M-SPC") 'mac-ime-toggle)
(global-set-key (kbd "S-SPC") 'mac-ime-toggle)))
;; To test the latest org
(nil
(add-to-list 'load-path (expand-file-name "~/devel/git/org-mode/lisp"))
(add-to-list 'load-path (expand-file-name "~/devel/git/org-tree-slide"))
(setq org-agenda-files '("~/Desktop/test/hoge.org")))
;; Debug
(nil
(add-to-list 'load-path (expand-file-name "~/Dropbox/config"))
(add-to-list 'load-path (expand-file-name "~/devel/git/org-mode/lisp"))
(add-to-list 'load-path
(expand-file-name "~/devel/git/org-mode/contrib/lisp"))
(add-to-list 'load-path my-package-dir) ;; defined in early-init.el
(require 'my-debug))
;; minimum
(nil (load (concat user-emacs-directory "min/init.el")))
;; configured with use-package (TRIAL)
(nil (load (concat user-emacs-directory "use-init.el")))
;; Spacemacs
(nil (load (concat (setq user-emacs-directory "~/.spacemacs.d/") "init.el")))
;; Normal mode. see also init-eval.el
(t
(setq debug-on-error nil
postpone-verbose nil
my-toggle-modeline-global t ;; 'doom ;; {nil, t, 'doom}
my-frame-appearance nil ;; {nil, 'dark, 'light}
my-skip-check-autoload-file t)
(defvar my-disabled-packages nil) ;; '(("web-mode" . nil)("org" . nil))
(defvar my-ad-require-p nil
"If non-nil, override `require' and `load' to show loading times.")
(defvar my-profiler-p nil
"If non-nil, use built-in profiler.el.")
(defvar my-loading-profile-p nil
"If non-nil, show ticks while booting.")
(defvar my-secure-boot nil
"Ensure to start Emacs. If non-nil, postpone and session are disabled.")
(setq measure-exec-time-list '(
my-private-conf-activate
my-org-babel-load-activate
my-org-modules-activate
my-org-agenda-prepare-buffers
;; my-show-org-buffer
))
;; (require 'my-eshell nil t)
(require 'init nil t)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; (package-initialize) ;; do not delete this line here for previous versions