2017-06-08 11:47:56 +02:00
|
|
|
;;; ui/doom-dashboard/config.el -*- lexical-binding: t; -*-
|
2017-02-20 16:33:14 -05:00
|
|
|
|
|
|
|
(defvar +doom-dashboard-name " *doom*"
|
2017-09-13 20:11:16 +02:00
|
|
|
"The name to use for the dashboard buffer.")
|
2017-02-20 16:33:14 -05:00
|
|
|
|
2018-01-20 02:53:06 -05:00
|
|
|
(defvar +doom-dashboard-functions '(doom-dashboard-widget-banner
|
|
|
|
doom-dashboard-widget-shortmenu
|
|
|
|
doom-dashboard-widget-loaded)
|
|
|
|
"List of widget functions to run in the dashboard buffer to construct the
|
|
|
|
dashboard. These functions take no arguments and the dashboard buffer is current
|
|
|
|
while they run.")
|
2017-02-20 16:33:14 -05:00
|
|
|
|
2017-12-29 01:49:29 -05:00
|
|
|
(defvar +doom-dashboard-inhibit-refresh nil
|
|
|
|
"If non-nil, the doom buffer won't be refreshed.")
|
|
|
|
|
2017-10-02 19:59:18 +02:00
|
|
|
(defvar +doom-dashboard-inhibit-functions ()
|
2018-01-20 02:53:06 -05:00
|
|
|
"A list of functions which take no arguments. If any of them return non-nil,
|
|
|
|
dashboard reloading is inhibited.")
|
|
|
|
|
2017-12-27 13:24:14 -05:00
|
|
|
(defvar +doom-dashboard-pwd-policy 'last-project
|
|
|
|
"The policy to use when setting the `default-directory' in the dashboard.
|
|
|
|
|
|
|
|
Possible values:
|
|
|
|
|
|
|
|
'last-project the `doom-project-root' of the last open buffer
|
|
|
|
'last the `default-directory' of the last open buffer
|
|
|
|
a FUNCTION a function run with the `default-directory' of the last
|
|
|
|
open buffer, that returns a directory path
|
|
|
|
a STRING a fixed path
|
|
|
|
nil `default-directory' will never change")
|
|
|
|
|
|
|
|
;;
|
|
|
|
(defvar +doom-dashboard--last-cwd nil)
|
2017-09-13 20:15:46 +02:00
|
|
|
(defvar +doom-dashboard--width 80)
|
2017-09-13 20:11:16 +02:00
|
|
|
(defvar +doom-dashboard--height 0)
|
|
|
|
(defvar +doom-dashboard--old-fringe-indicator fringe-indicator-alist)
|
2018-01-20 02:53:06 -05:00
|
|
|
(defvar +doom-dashboard--pwd-alist ())
|
2017-09-13 20:11:16 +02:00
|
|
|
|
2017-12-29 01:49:29 -05:00
|
|
|
(defvar all-the-icons-scale-factor)
|
|
|
|
(defvar all-the-icons-default-adjust)
|
|
|
|
|
2017-09-13 20:11:16 +02:00
|
|
|
|
2018-01-08 16:15:28 -05:00
|
|
|
;;
|
2018-01-20 02:53:06 -05:00
|
|
|
;; Bootstrap
|
2018-01-08 16:15:28 -05:00
|
|
|
;;
|
|
|
|
|
2018-02-01 20:06:00 -05:00
|
|
|
(setq doom-fallback-buffer-name +doom-dashboard-name
|
2018-01-20 02:53:06 -05:00
|
|
|
initial-buffer-choice #'+doom-dashboard-initial-buffer)
|
|
|
|
|
|
|
|
(add-hook 'window-setup-hook #'+doom-dashboard|init)
|
2018-01-08 16:15:28 -05:00
|
|
|
|
|
|
|
|
|
|
|
;;
|
2018-01-20 02:53:06 -05:00
|
|
|
;; Major mode
|
2018-01-08 16:15:28 -05:00
|
|
|
;;
|
|
|
|
|
2017-06-25 02:01:05 +02:00
|
|
|
(define-derived-mode +doom-dashboard-mode special-mode
|
2017-09-29 02:41:21 +02:00
|
|
|
(format "DOOM v%s" doom-version)
|
2018-03-18 02:36:12 -04:00
|
|
|
:syntax-table nil
|
|
|
|
:abbrev-table nil
|
2017-06-25 02:01:05 +02:00
|
|
|
"Major mode for the DOOM dashboard buffer."
|
2018-03-18 02:36:12 -04:00
|
|
|
(setq truncate-lines t
|
|
|
|
buffer-read-only t)
|
2017-12-22 16:33:08 -05:00
|
|
|
(setq-local whitespace-style nil)
|
2017-12-25 19:09:55 -05:00
|
|
|
(setq-local show-trailing-whitespace nil)
|
2017-06-25 02:01:05 +02:00
|
|
|
(cl-loop for (car . _cdr) in fringe-indicator-alist
|
|
|
|
collect (cons car nil) into alist
|
2018-03-18 02:35:52 -04:00
|
|
|
finally do (setq fringe-indicator-alist alist))
|
|
|
|
(add-hook 'post-command-hook #'+doom-dashboard|reposition-point nil t))
|
2018-01-20 02:53:06 -05:00
|
|
|
|
|
|
|
(map! :map +doom-dashboard-mode-map
|
2018-03-20 17:36:16 -04:00
|
|
|
"n" #'forward-button
|
|
|
|
:gn [down] #'forward-button
|
|
|
|
:gn "C-n" #'forward-button
|
|
|
|
:gn [tab] #'forward-button
|
|
|
|
:gn "TAB" #'forward-button
|
|
|
|
"p" #'backward-button
|
|
|
|
:gn [up] #'backward-button
|
|
|
|
:gn "C-p" #'backward-button
|
|
|
|
:gn [backtab] #'backward-button
|
|
|
|
:gn "S-TAB" #'backward-button
|
2018-01-20 02:53:06 -05:00
|
|
|
(:when (featurep! :feature evil)
|
2018-03-18 15:17:40 -04:00
|
|
|
:m "j" #'forward-button
|
|
|
|
:m "k" #'backward-button
|
2018-03-18 02:35:52 -04:00
|
|
|
|
|
|
|
[remap evil-delete] #'ignore
|
|
|
|
[remap evil-delete-line] #'ignore
|
|
|
|
[remap evil-insert] #'ignore
|
|
|
|
[remap evil-append] #'ignore
|
|
|
|
[remap evil-replace] #'ignore
|
|
|
|
[remap evil-replace-state] #'ignore
|
|
|
|
[remap evil-change] #'ignore
|
|
|
|
[remap evil-change-line] #'ignore
|
|
|
|
[remap evil-visual-char] #'ignore
|
|
|
|
[remap evil-visual-line] #'ignore))
|
2018-01-20 02:53:06 -05:00
|
|
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
;; Hooks
|
|
|
|
;;
|
|
|
|
|
2018-03-18 02:35:52 -04:00
|
|
|
(defun +doom-dashboard|reposition-point ()
|
|
|
|
"Trap the point in the buttons."
|
2018-03-20 00:00:21 -04:00
|
|
|
(when (region-active-p)
|
|
|
|
(deactivate-mark t)
|
|
|
|
(when (bound-and-true-p evil-mode)
|
|
|
|
(evil-change-to-previous-state)))
|
2018-03-18 15:17:20 -04:00
|
|
|
(or (ignore-errors
|
|
|
|
(if (button-at (point))
|
|
|
|
(forward-button 0)
|
|
|
|
(backward-button 1)))
|
|
|
|
(progn (goto-char (point-min))
|
|
|
|
(forward-button 1))))
|
2018-03-18 02:35:52 -04:00
|
|
|
|
2018-01-20 02:53:06 -05:00
|
|
|
(defun +doom-dashboard|init ()
|
|
|
|
"Initializes Doom's dashboard."
|
|
|
|
(add-hook 'window-configuration-change-hook #'+doom-dashboard|resize)
|
2017-12-29 01:49:29 -05:00
|
|
|
(add-hook 'kill-buffer-query-functions #'+doom-dashboard|reload-on-kill)
|
2018-03-14 18:51:08 -04:00
|
|
|
(add-hook 'doom-after-switch-buffer-hook #'+doom-dashboard|reload-on-kill)
|
2018-01-08 16:15:28 -05:00
|
|
|
(when (daemonp)
|
|
|
|
(add-hook 'after-make-frame-functions #'+doom-dashboard|make-frame))
|
2018-01-20 02:53:06 -05:00
|
|
|
;; `persp-mode' integration: update `default-directory' when switching
|
|
|
|
(add-hook 'persp-created-functions #'+doom-dashboard|record-project)
|
|
|
|
(add-hook 'persp-activated-functions #'+doom-dashboard|detect-project)
|
|
|
|
(add-hook 'persp-before-switch-functions #'+doom-dashboard|record-project)
|
2018-01-28 18:15:22 -05:00
|
|
|
(+doom-dashboard-reload t))
|
2017-02-20 16:33:14 -05:00
|
|
|
|
2017-12-29 01:49:29 -05:00
|
|
|
(defun +doom-dashboard|reload-on-kill ()
|
2018-01-20 02:53:06 -05:00
|
|
|
"A `kill-buffer-query-functions' hook. If this isn't a dashboard buffer, move
|
|
|
|
along, but record its `default-directory' if the buffer is real. See
|
|
|
|
`doom-real-buffer-p' for an explanation for what 'real' means.
|
2017-12-29 04:16:14 -05:00
|
|
|
|
|
|
|
If this is the dashboard buffer, reload the dashboard."
|
2018-01-20 02:53:06 -05:00
|
|
|
(or (let ((buf (current-buffer)))
|
|
|
|
(unless (+doom-dashboard-p buf)
|
|
|
|
(when (doom-real-buffer-p buf)
|
|
|
|
(setq +doom-dashboard--last-cwd default-directory)
|
|
|
|
(+doom-dashboard-update-pwd))
|
|
|
|
t))
|
2017-12-27 17:12:50 -05:00
|
|
|
(ignore
|
|
|
|
(let (+doom-dashboard-inhibit-refresh)
|
|
|
|
(ignore-errors (+doom-dashboard-reload))))))
|
2017-06-08 11:47:56 +02:00
|
|
|
|
2017-06-25 01:59:58 +02:00
|
|
|
(defun +doom-dashboard|make-frame (frame)
|
|
|
|
"Reload the dashboard after a brief pause. This is necessary for new frames,
|
|
|
|
whose dimensions may not be fully initialized by the time this is run."
|
2018-01-20 02:53:06 -05:00
|
|
|
(run-with-timer 0.1 nil #'+doom-dashboard/open frame))
|
|
|
|
|
|
|
|
(defun +doom-dashboard|resize ()
|
|
|
|
"Resize the margins and fringes on dashboard windows."
|
|
|
|
(dolist (win (get-buffer-window-list (doom-fallback-buffer) nil t))
|
|
|
|
(set-window-fringes win 0 0)
|
|
|
|
(set-window-margins
|
|
|
|
win (max 0 (/ (- (window-total-width win) +doom-dashboard--width) 2)))))
|
|
|
|
|
|
|
|
(defun +doom-dashboard|detect-project (&rest _)
|
|
|
|
"Check for a `last-project-root' parameter in the perspective, and set the
|
|
|
|
dashboard's `default-directory' to it if it exists.
|
|
|
|
|
|
|
|
This and `+doom-dashboard|record-project' provides `persp-mode' integration with
|
|
|
|
the Doom dashboard. It ensures that the dashboard is always in the correct
|
|
|
|
project (which may be different across perspective)."
|
|
|
|
(when (bound-and-true-p persp-mode)
|
|
|
|
(when-let* ((pwd (persp-parameter 'last-project-root)))
|
|
|
|
(+doom-dashboard-update-pwd pwd))))
|
|
|
|
|
|
|
|
(defun +doom-dashboard|record-project (&optional persp &rest _)
|
|
|
|
"Record the last `doom-project-root' for the current perspective. See
|
|
|
|
`+doom-dashboard|detect-project' for more information."
|
|
|
|
(when (bound-and-true-p persp-mode)
|
|
|
|
(set-persp-parameter
|
|
|
|
'last-project-root (doom-project-root)
|
|
|
|
(if (perspective-p persp) persp (get-current-persp)))))
|
|
|
|
|
2017-06-25 01:59:58 +02:00
|
|
|
|
2018-01-20 02:53:06 -05:00
|
|
|
;;
|
|
|
|
;; Library
|
|
|
|
;;
|
|
|
|
|
|
|
|
(defun +doom-dashboard-initial-buffer ()
|
|
|
|
"Returns buffer to display on startup. Designed for `initial-buffer-choice'."
|
2018-01-28 20:37:40 -05:00
|
|
|
(if (doom-real-buffer-p)
|
2018-01-20 02:53:06 -05:00
|
|
|
(current-buffer)
|
|
|
|
(doom-fallback-buffer)))
|
|
|
|
|
|
|
|
(defun +doom-dashboard-p (buffer)
|
2017-03-15 22:59:21 -04:00
|
|
|
"Returns t if BUFFER is the dashboard buffer."
|
2018-01-20 02:53:06 -05:00
|
|
|
(eq buffer (doom-fallback-buffer)))
|
2017-12-29 01:49:29 -05:00
|
|
|
|
2018-01-20 02:53:06 -05:00
|
|
|
(defun +doom-dashboard-update-pwd (&optional pwd)
|
2018-01-05 14:54:45 -05:00
|
|
|
"Update `default-directory' in the Doom dashboard buffer. What it is set to is
|
|
|
|
controlled by `+doom-dashboard-pwd-policy'."
|
2018-02-01 01:24:19 -05:00
|
|
|
(if pwd
|
|
|
|
(with-current-buffer (doom-fallback-buffer)
|
|
|
|
(setq-local default-directory pwd))
|
|
|
|
(let ((new-pwd (+doom-dashboard--get-pwd)))
|
|
|
|
(when (and new-pwd (file-directory-p new-pwd))
|
|
|
|
(unless (string-suffix-p "/" new-pwd)
|
|
|
|
(setq new-pwd (concat new-pwd "/")))
|
|
|
|
(+doom-dashboard-update-pwd new-pwd)))))
|
2017-12-29 01:49:29 -05:00
|
|
|
|
|
|
|
(defun +doom-dashboard-reload (&optional force)
|
|
|
|
"Update the DOOM scratch buffer (or create it, if it doesn't exist)."
|
2018-01-20 02:53:06 -05:00
|
|
|
(when (or (and (not +doom-dashboard-inhibit-refresh)
|
|
|
|
(get-buffer-window (doom-fallback-buffer))
|
|
|
|
(not (window-minibuffer-p (frame-selected-window)))
|
|
|
|
(not (run-hook-with-args-until-success '+doom-dashboard-inhibit-functions)))
|
|
|
|
force)
|
|
|
|
(with-current-buffer (doom-fallback-buffer)
|
|
|
|
(with-silent-modifications
|
|
|
|
(save-excursion
|
2017-12-29 01:49:29 -05:00
|
|
|
(unless (eq major-mode '+doom-dashboard-mode)
|
|
|
|
(+doom-dashboard-mode))
|
|
|
|
(erase-buffer)
|
2018-01-20 02:53:06 -05:00
|
|
|
(save-excursion (mapc #'funcall +doom-dashboard-functions))
|
|
|
|
(insert
|
|
|
|
(make-string (max 0 (- (/ (window-height (get-buffer-window)) 2)
|
|
|
|
(/ (count-lines (point-min) (point-max)) 2)))
|
|
|
|
?\n)))
|
|
|
|
(unless (button-at (point))
|
|
|
|
(goto-char (next-button (point-min)))))
|
|
|
|
(+doom-dashboard|detect-project)
|
|
|
|
(+doom-dashboard|resize)
|
|
|
|
(+doom-dashboard-update-pwd)
|
|
|
|
(current-buffer))))
|
2017-02-20 16:33:14 -05:00
|
|
|
|
2017-12-29 01:49:29 -05:00
|
|
|
;; helpers
|
|
|
|
(defun +doom-dashboard--center (len s)
|
2017-06-25 02:01:05 +02:00
|
|
|
(concat (make-string (ceiling (max 0 (- len (length s))) 2) ? )
|
|
|
|
s))
|
|
|
|
|
2017-12-28 19:59:32 -05:00
|
|
|
(defun +doom-dashboard--get-pwd ()
|
2017-12-27 21:00:03 -05:00
|
|
|
(let ((lastcwd +doom-dashboard--last-cwd)
|
|
|
|
(policy +doom-dashboard-pwd-policy))
|
2018-01-28 18:14:41 -05:00
|
|
|
(cond ((null policy)
|
2017-12-27 21:00:03 -05:00
|
|
|
default-directory)
|
2017-12-29 04:15:56 -05:00
|
|
|
((stringp policy)
|
|
|
|
(expand-file-name policy lastcwd))
|
|
|
|
((functionp policy)
|
|
|
|
(funcall policy lastcwd))
|
2017-12-27 21:00:03 -05:00
|
|
|
((null lastcwd)
|
|
|
|
default-directory)
|
|
|
|
((eq policy 'last-project)
|
|
|
|
(let ((cwd default-directory)
|
|
|
|
(default-directory lastcwd))
|
|
|
|
(if (doom-project-p)
|
|
|
|
(doom-project-root)
|
|
|
|
cwd)))
|
2017-12-28 19:58:27 -05:00
|
|
|
((eq policy 'last)
|
|
|
|
lastcwd)
|
2017-12-27 21:00:03 -05:00
|
|
|
(t
|
|
|
|
(warn "`+doom-dashboard-pwd-policy' has an invalid value of '%s'"
|
2017-12-29 04:15:56 -05:00
|
|
|
policy)))))
|
2017-12-27 13:24:14 -05:00
|
|
|
|
2018-01-08 16:15:28 -05:00
|
|
|
|
|
|
|
;;
|
|
|
|
;; Widgets
|
|
|
|
;;
|
|
|
|
|
2018-01-20 02:53:06 -05:00
|
|
|
(defun doom-dashboard-widget-banner ()
|
2017-02-20 16:33:14 -05:00
|
|
|
(mapc (lambda (line)
|
2017-12-29 01:49:29 -05:00
|
|
|
(insert (propertize (+doom-dashboard--center +doom-dashboard--width line)
|
2017-02-20 16:33:14 -05:00
|
|
|
'face 'font-lock-comment-face) " ")
|
|
|
|
(insert "\n"))
|
|
|
|
'("================= =============== =============== ======== ========"
|
|
|
|
"\\\\ . . . . . . .\\\\ //. . . . . . .\\\\ //. . . . . . .\\\\ \\\\. . .\\\\// . . //"
|
|
|
|
"||. . ._____. . .|| ||. . ._____. . .|| ||. . ._____. . .|| || . . .\\/ . . .||"
|
|
|
|
"|| . .|| ||. . || || . .|| ||. . || || . .|| ||. . || ||. . . . . . . ||"
|
|
|
|
"||. . || || . .|| ||. . || || . .|| ||. . || || . .|| || . | . . . . .||"
|
|
|
|
"|| . .|| ||. _-|| ||-_ .|| ||. . || || . .|| ||. _-|| ||-_.|\\ . . . . ||"
|
|
|
|
"||. . || ||-' || || `-|| || . .|| ||. . || ||-' || || `|\\_ . .|. .||"
|
|
|
|
"|| . _|| || || || || ||_ . || || . _|| || || || |\\ `-_/| . ||"
|
|
|
|
"||_-' || .|/ || || \\|. || `-_|| ||_-' || .|/ || || | \\ / |-_.||"
|
|
|
|
"|| ||_-' || || `-_|| || || ||_-' || || | \\ / | `||"
|
|
|
|
"|| `' || || `' || || `' || || | \\ / | ||"
|
|
|
|
"|| .===' `===. .==='.`===. .===' /==. | \\/ | ||"
|
|
|
|
"|| .==' \\_|-_ `===. .===' _|_ `===. .===' _-|/ `== \\/ | ||"
|
|
|
|
"|| .==' _-' `-_ `=' _-' `-_ `=' _-' `-_ /| \\/ | ||"
|
|
|
|
"|| .==' _-' '-__\\._-' '-_./__-' `' |. /| | ||"
|
|
|
|
"||.==' _-' `' | /==.||"
|
|
|
|
"==' _-' E M A C S \\/ `=="
|
|
|
|
"\\ _-' `-_ /"
|
|
|
|
" `'' ``'")))
|
|
|
|
|
2018-01-20 02:53:06 -05:00
|
|
|
(defun doom-dashboard-widget-loaded ()
|
2017-02-20 16:33:14 -05:00
|
|
|
(insert
|
2018-01-20 02:53:06 -05:00
|
|
|
"\n\n"
|
2017-02-20 16:33:14 -05:00
|
|
|
(propertize
|
2017-12-29 01:49:29 -05:00
|
|
|
(+doom-dashboard--center
|
2017-06-25 02:01:05 +02:00
|
|
|
+doom-dashboard--width
|
2018-02-27 22:30:49 -05:00
|
|
|
(doom-packages--benchmark))
|
2017-02-20 16:33:14 -05:00
|
|
|
'face 'font-lock-comment-face)
|
2018-01-20 02:53:06 -05:00
|
|
|
"\n\n"))
|
2017-02-20 16:33:14 -05:00
|
|
|
|
2018-01-20 02:53:06 -05:00
|
|
|
(defun doom-dashboard-widget-shortmenu ()
|
2017-09-29 02:42:38 +02:00
|
|
|
(let ((all-the-icons-scale-factor 1.45)
|
|
|
|
(all-the-icons-default-adjust -0.02))
|
2018-01-20 02:53:06 -05:00
|
|
|
(insert "\n")
|
2017-04-26 01:43:25 -04:00
|
|
|
(mapc (lambda (btn)
|
|
|
|
(when btn
|
2017-07-18 22:12:50 +02:00
|
|
|
(cl-destructuring-bind (label icon fn) btn
|
2017-04-26 01:43:25 -04:00
|
|
|
(insert
|
|
|
|
(with-temp-buffer
|
2017-02-20 16:33:14 -05:00
|
|
|
(insert-text-button
|
2017-07-18 22:12:50 +02:00
|
|
|
(concat (all-the-icons-octicon icon :face 'font-lock-keyword-face)
|
2017-04-26 01:43:25 -04:00
|
|
|
(propertize (concat " " label) 'face 'font-lock-keyword-face))
|
2017-07-18 22:12:50 +02:00
|
|
|
'action `(lambda (_) ,fn)
|
2017-04-26 01:43:25 -04:00
|
|
|
'follow-link t)
|
2017-12-29 01:49:29 -05:00
|
|
|
(+doom-dashboard--center (- +doom-dashboard--width 2) (buffer-string)))
|
2017-07-18 22:12:50 +02:00
|
|
|
"\n\n"))))
|
2017-04-26 01:43:25 -04:00
|
|
|
`(("Homepage" "mark-github"
|
2017-09-13 20:11:16 +02:00
|
|
|
(browse-url "https://github.com/hlissner/doom-emacs"))
|
2017-09-29 02:42:38 +02:00
|
|
|
,(when (and (featurep! :feature workspaces)
|
2017-09-13 20:11:16 +02:00
|
|
|
(file-exists-p (expand-file-name persp-auto-save-fname persp-save-dir)))
|
2017-04-26 01:43:25 -04:00
|
|
|
'("Reload last session" "history"
|
2017-07-26 15:45:01 +02:00
|
|
|
(+workspace/load-session)))
|
2018-02-28 13:53:37 +01:00
|
|
|
,(when (featurep! :lang org)
|
2017-09-29 02:42:46 +02:00
|
|
|
'("See agenda for this week" "calendar"
|
2018-02-18 20:50:30 -05:00
|
|
|
(call-interactively #'org-agenda-list)))
|
2017-04-26 01:43:25 -04:00
|
|
|
("Recently opened files" "file-text"
|
2018-01-12 18:41:06 -05:00
|
|
|
(call-interactively (or (command-remapping #'recentf-open-files)
|
|
|
|
#'recentf-open-files)))
|
2017-09-29 02:42:38 +02:00
|
|
|
("Open project" "briefcase"
|
2018-01-12 18:41:06 -05:00
|
|
|
(call-interactively (or (command-remapping #'projectile-switch-project)
|
|
|
|
#'projectile-switch-project)))
|
2017-04-26 01:43:25 -04:00
|
|
|
("Jump to bookmark" "bookmark"
|
2018-01-12 18:41:06 -05:00
|
|
|
(call-interactively (or (command-remapping #'bookmark-jump)
|
|
|
|
#'bookmark-jump)))
|
2018-02-16 21:02:24 -05:00
|
|
|
,(when (featurep! :config private)
|
2018-03-24 17:53:13 -04:00
|
|
|
'("Open private configuration" "settings"
|
|
|
|
(find-file (expand-file-name "config.el" +private-config-path))))
|
|
|
|
("Edit my modules list" "pencil"
|
|
|
|
(if (featurep! :config private)
|
|
|
|
(let ((init-file (expand-file-name "init.el" +private-config-path)))
|
|
|
|
(unless (file-exists-p init-file)
|
|
|
|
(make-directory (file-name-directory init-file) t)
|
|
|
|
(copy-file (expand-file-name "init.example.el" doom-emacs-dir) init-file t))
|
|
|
|
(find-file init-file))
|
|
|
|
(find-file user-init-file)))
|
2018-02-16 21:02:24 -05:00
|
|
|
("Edit Doom Emacs" "tools"
|
2018-01-29 01:02:24 -05:00
|
|
|
(doom-project-find-file doom-emacs-dir))))))
|