summaryrefslogtreecommitdiff
path: root/scripts/profile-dotemacs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/profile-dotemacs.sh')
-rwxr-xr-xscripts/profile-dotemacs.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/scripts/profile-dotemacs.sh b/scripts/profile-dotemacs.sh
deleted file mode 100755
index b31d078b..00000000
--- a/scripts/profile-dotemacs.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env bash
-
-# profile-dotemacs.sh
-# Craig Jennings <c@cjennings.net>
-# a convenience script to load an emacs-lisp file which will
-# startup emacs (with or without an early-init) and provide
-# benchmark information on the Emacs config.
-
-EMACS_HOME="$HOME/.emacs.d/"
-EARLY_INIT_FILE="$EMACS_HOME/early-init.el"
-PROFILE_FILE="$EMACS_HOME/custom/profile-dotemacs.el"
-
-if [ -f "$EARLY_INIT_FILE" ]
-then
- emacs -Q --load $PROFILE_FILE --eval "(progn (load-file \"~/.emacs.d/early-init.el\") (profile-dotemacs))"
-else
- echo "No early init found. Proceeding to benchmark init.el."
- emacs -Q --load $PROFILE_FILE --eval "(profile-dotemacs)"
-fi
-