From 40a1a45e4e8c519d70136a78cf900d8bffac9d69 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Sun, 18 Dec 2022 19:28:44 +0000 Subject: [PATCH] chore: remove dashboard --- init.el | 3 +++ lisp/interface.el | 14 ++------------ 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/init.el b/init.el index c379061..47c4032 100644 --- a/init.el +++ b/init.el @@ -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/"))) diff --git a/lisp/interface.el b/lisp/interface.el index 3f3995e..f39eb23 100644 --- a/lisp/interface.el +++ b/lisp/interface.el @@ -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)