Browse Source

Add more hacks

master
10sr 3 years ago
parent
commit
ff73eb487a
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 20 additions and 4 deletions
  1. +20
    -4
      emacs.el

+ 20
- 4
emacs.el View File

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


(setq debug-on-error t) (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 ;; make directories
(unless (file-directory-p (expand-file-name user-emacs-directory)) (unless (file-directory-p (expand-file-name user-emacs-directory))
(make-directory (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 ;; Some macros for internals


@@ -3068,12 +3078,18 @@ Any output will be written to current buffer."
(mmv-draw-mark)) (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: ;; Local Variables:
;; flycheck-disabled-checkers: (emacs-lisp-checkdoc) ;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
;; flycheck-checker: emacs-lisp ;; flycheck-checker: emacs-lisp
;; End: ;; End:


;; (profiler-report)

;;; emancs.el ends here ;;; emancs.el ends here

Loading…
Cancel
Save