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
|
||||
:init
|
||||
(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)
|
||||
dir
|
||||
"~/.eshell"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue