Fix magit definition to use magit-delta now
Remove private config shortcut from dashboard
This commit is contained in:
parent
4663abd15f
commit
581295af0a
|
@ -52,10 +52,6 @@
|
|||
("Jump to bookmark"
|
||||
:icon (nerd-icons-mdicon "nf-md-bookmark" :face 'doom-dashboard-menu-title)
|
||||
:action bookmark-jump)
|
||||
("Open private configuration"
|
||||
:icon (nerd-icons-mdicon "nf-md-tools" :face 'doom-dashboard-menu-title)
|
||||
:when (file-directory-p doom-user-dir)
|
||||
:action doom/open-private-config)
|
||||
("Open documentation"
|
||||
:icon (nerd-icons-mdicon "nf-md-book" :face 'doom-dashboard-menu-title)
|
||||
:action doom/help)))
|
||||
|
@ -71,8 +67,11 @@
|
|||
+workspaces-switch-project-function 'doom-project-browse
|
||||
+workspaces-on-switch-project-behavior t))
|
||||
|
||||
(after! (magit magit-delta)
|
||||
(add-hook 'magit-mode-hook (lambda () (magit-delta-mode +1))))
|
||||
(after! magit
|
||||
(require 'magit-delta)
|
||||
(setq magit-clone-default-directory "~/Projects/")
|
||||
(after! magit-delta
|
||||
(add-hook 'magit-mode-hook (lambda () (magit-delta-mode +1)))))
|
||||
|
||||
;; mail settings
|
||||
(after! mu4e
|
||||
|
|
Loading…
Reference in a new issue