chore: remove dashboard

This commit is contained in:
Muhammad Nauman Raza 2022-12-18 19:28:44 +00:00
parent 252be5a92e
commit 40a1a45e4e
No known key found for this signature in database
GPG key ID: 62D07698363B5010
2 changed files with 5 additions and 12 deletions

View file

@ -41,6 +41,9 @@
;; Always make sure packages are installed to the system
(setq use-package-always-ensure t)
;; Disable unnecessary warnings
(setq warning-minimum-level :emergency)
;; Add external e-lisp files to the load-path
(add-to-list 'load-path (concat user-emacs-directory
(convert-standard-filename "lisp/")))

View file

@ -22,8 +22,8 @@
;; Add a nice border around Emacs
(modify-all-frames-parameters
'((right-divider-width . 30)
(internal-border-width . 30)))
'((right-divider-width . 15)
(internal-border-width . 15)))
(dolist (face '(window-divider
window-divider-first-pixel
window-divider-last-pixel))
@ -44,16 +44,6 @@
completion-category-defaults nil
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
(use-package magit)