-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
27 lines (25 loc) · 1.05 KB
/
init.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
;;; Code:
(setq package-enable-at-startup nil)
(defvar bootstrap-version)
(setq straight-process-buffer "*Messages*"
straight-check-for-modifications nil
straight-vc-git-default-clone-depth 1)
(let ((bootstrap-file
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
(bootstrap-version 5))
(unless (file-exists-p bootstrap-file)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
'silent 'inhibit-cookies)
(goto-char (point-max))
(eval-print-last-sexp)))
(load bootstrap-file nil 'nomessage))
(require 'config (expand-file-name "config.el" user-emacs-directory))
(provide 'init)
;;; init.el ends here
(put 'dired-find-alternate-file 'disabled nil)