ui/doom-dashboard: remove 'Edit Doom Emacs' button

This commit is contained in:
Henrik Lissner 2018-04-03 16:58:41 -04:00
parent cc13f51b7f
commit c24c868945
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -325,10 +325,8 @@ controlled by `+doom-dashboard-pwd-policy'."
(call-interactively (or (command-remapping #'bookmark-jump) (call-interactively (or (command-remapping #'bookmark-jump)
#'bookmark-jump))) #'bookmark-jump)))
,(when (file-directory-p doom-private-dir) ,(when (file-directory-p doom-private-dir)
'("Open private configuration" "settings" '("Open private configuration" "tools"
(doom-project-find-file doom-private-dir))) (doom-project-find-file doom-private-dir)))
("Edit my modules list" "pencil" ("Edit my modules list" "settings"
(progn (make-directory doom-private-dir t) (progn (make-directory doom-private-dir t)
(find-file (expand-file-name "init.el" doom-private-dir)))) (find-file (expand-file-name "init.el" doom-private-dir))))))))
("Edit Doom Emacs" "tools"
(doom-project-find-file doom-emacs-dir))))))