2019-03-16 14:01:26 -04:00
|
|
|
;;; core/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
(defun file-size (file &optional dir)
|
|
|
|
(setq file (expand-file-name file dir))
|
|
|
|
(when (file-exists-p file)
|
|
|
|
(/ (nth 7 (file-attributes file))
|
|
|
|
1024.0)))
|
|
|
|
|
|
|
|
;; Check for oversized problem files in cache that may cause unusual/tremendous
|
|
|
|
;; delays or freezing. This shouldn't happen often.
|
|
|
|
(dolist (file (list "savehist"
|
|
|
|
"projectile.cache"))
|
2019-03-28 18:27:45 -04:00
|
|
|
(let* ((path (expand-file-name file doom-cache-dir))
|
2019-03-16 14:01:26 -04:00
|
|
|
(size (file-size path)))
|
|
|
|
(when (and (numberp size) (> size 2000))
|
|
|
|
(warn! "%s is too large (%.02fmb). This may cause freezes or odd startup delays"
|
|
|
|
(file-relative-name path doom-core-dir)
|
|
|
|
(/ size 1024))
|
|
|
|
(explain! "Consider deleting it from your system (manually)"))))
|
|
|
|
|
2019-04-01 12:18:12 +05:30
|
|
|
(when! (not (executable-find doom-projectile-fd-binary))
|
2019-03-16 14:01:26 -04:00
|
|
|
(warn! "Couldn't find the `fd' binary; project file searches will be slightly slower"))
|
|
|
|
|
|
|
|
(let ((default-directory "~"))
|
|
|
|
(require 'projectile)
|
|
|
|
(when! (cl-find-if #'projectile-file-exists-p projectile-project-root-files-bottom-up)
|
|
|
|
(warn! "Your $HOME is recognized as a project root")
|
|
|
|
(explain! "Doom will disable bottom-up root search, which may reduce the accuracy of project\n"
|
|
|
|
"detection.")))
|