tools/eshell: fix naive path concatenation for eshell-directory-name
This commit is contained in:
parent
6b70831386
commit
cce30367bb
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
||||||
:defer t
|
:defer t
|
||||||
:init
|
:init
|
||||||
(setq eshell-directory-name
|
(setq eshell-directory-name
|
||||||
(let ((dir (concat doom-private-dir "eshell")))
|
(let ((dir (expand-file-name "eshell" doom-private-dir)))
|
||||||
(if (file-directory-p dir)
|
(if (file-directory-p dir)
|
||||||
dir
|
dir
|
||||||
"~/.eshell"))
|
"~/.eshell"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue