瀏覽代碼

Add more hacks

master
10sr 3 年之前
父節點
當前提交
ff73eb487a
簽署人: 10sr GPG 金鑰 ID: 7BEC428194130EB2
共有 1 個檔案被更改,包括 20 行新增4 行删除
  1. +20
    -4
      emacs.el

+ 20
- 4
emacs.el 查看文件

@@ -11,6 +11,18 @@

(setq debug-on-error t)

(when (getenv "_EMACS_EL_PROFILE")
(eval-and-compile
(require 'profiler))
(profiler-start 'cpu))

;; https://emacs-jp.github.io/tips/startup-optimization
;; Temporarily change values to speed up initialization
(defconst my-orig-file-name-handler-alist file-name-handler-alist)
(setq file-name-handler-alist nil)
(defconst my-orig-gc-cons-threshold gc-cons-threshold)
(setq gc-cons-threshold most-positive-fixnum)

;; make directories
(unless (file-directory-p (expand-file-name user-emacs-directory))
(make-directory (expand-file-name user-emacs-directory)))
@@ -25,8 +37,6 @@


;; (profiler-start 'cpu)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Some macros for internals

@@ -3068,12 +3078,18 @@ Any output will be written to current buffer."
(mmv-draw-mark))


;; https://emacs-jp.github.io/tips/startup-optimization
;; Restore to original value
(setq gc-cons-threshold my-orig-gc-cons-threshold)
(setq file-name-handler-alist my-orig-file-name-handler-alist)

(when (getenv "_EMACS_EL_PROFILE")
(profiler-report)
(profiler-stop))

;; Local Variables:
;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
;; flycheck-checker: emacs-lisp
;; End:

;; (profiler-report)

;;; emancs.el ends here

Loading…
取消
儲存