chore: remove dashboard
This commit is contained in:
parent
252be5a92e
commit
40a1a45e4e
3
init.el
3
init.el
|
@ -41,6 +41,9 @@
|
||||||
;; Always make sure packages are installed to the system
|
;; Always make sure packages are installed to the system
|
||||||
(setq use-package-always-ensure t)
|
(setq use-package-always-ensure t)
|
||||||
|
|
||||||
|
;; Disable unnecessary warnings
|
||||||
|
(setq warning-minimum-level :emergency)
|
||||||
|
|
||||||
;; Add external e-lisp files to the load-path
|
;; Add external e-lisp files to the load-path
|
||||||
(add-to-list 'load-path (concat user-emacs-directory
|
(add-to-list 'load-path (concat user-emacs-directory
|
||||||
(convert-standard-filename "lisp/")))
|
(convert-standard-filename "lisp/")))
|
||||||
|
|
|
@ -22,8 +22,8 @@
|
||||||
|
|
||||||
;; Add a nice border around Emacs
|
;; Add a nice border around Emacs
|
||||||
(modify-all-frames-parameters
|
(modify-all-frames-parameters
|
||||||
'((right-divider-width . 30)
|
'((right-divider-width . 15)
|
||||||
(internal-border-width . 30)))
|
(internal-border-width . 15)))
|
||||||
(dolist (face '(window-divider
|
(dolist (face '(window-divider
|
||||||
window-divider-first-pixel
|
window-divider-first-pixel
|
||||||
window-divider-last-pixel))
|
window-divider-last-pixel))
|
||||||
|
@ -44,16 +44,6 @@
|
||||||
completion-category-defaults nil
|
completion-category-defaults nil
|
||||||
completion-category-overrides '((file (styles basic partial-completion)))))
|
completion-category-overrides '((file (styles basic partial-completion)))))
|
||||||
|
|
||||||
;; emacs-dashboard - An extensible Emacs dashboard
|
|
||||||
(use-package dashboard
|
|
||||||
:init
|
|
||||||
(dashboard-setup-startup-hook)
|
|
||||||
:custom
|
|
||||||
(dashboard-banner-logo-title "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWelcome to Dianciemacs!")
|
|
||||||
(dashboard-center-content t)
|
|
||||||
(dashboard-startup-banner nil)
|
|
||||||
(initial-buffer-choice (lambda () (get-buffer-create "*dashboard*"))))
|
|
||||||
|
|
||||||
;; magit - A beautiful git porcelain for Emacs
|
;; magit - A beautiful git porcelain for Emacs
|
||||||
(use-package magit)
|
(use-package magit)
|
||||||
|
|
||||||
|
|
Reference in a new issue