Emacs: Replace concat with expand-file-name.
This commit is contained in:
parent
e7eab3ae69
commit
9a257f6213
4
init.el
4
init.el
|
@ -1,6 +1,6 @@
|
|||
;;; init.el --- tastytea's Emacs init file. -*- lexical-binding: t; -*-
|
||||
|
||||
;; Time-stamp: <2020-03-15T12:48:57+0100>
|
||||
;; Time-stamp: <2020-03-16T00:47:13+0100>
|
||||
|
||||
;;; Commentary:
|
||||
;; Requires at least Emacs 26. Most of it will probably work with Emacs 24 and
|
||||
|
@ -17,7 +17,7 @@
|
|||
"Set garbage collection threshold to 20 MiB to speed up init.")
|
||||
|
||||
;; Add path to init files.
|
||||
(push (concat user-emacs-directory "init.d") load-path)
|
||||
(push (expand-file-name "init.d" user-emacs-directory) load-path)
|
||||
|
||||
(require 'basics/package-management)
|
||||
(require 'basics/early-packages)
|
||||
|
|
Loading…
Reference in New Issue
Block a user