summaryrefslogtreecommitdiffstats
path: root/early-init.el
blob: bb6d45cc30dd0de30192c0bef060f8d39c0bcbbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
;; No package.el (for emacs 27 and later).  See
;; https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=24acb31c04b4048b85311d794e600ecd7ce60d3b
(setq package-enable-at-startup nil)
(setq load-prefer-newer t)
(defmacro comment (&rest _)
  "Comment out one or more s-expressions."
  (declare (indent defun))
  nil)
(add-to-list
 'load-path
 (expand-file-name
  (convert-standard-filename "lisp") user-emacs-directory))
(require 'bandali-utils)