From d5c4b5a12aba70f99477cc7eb6e7b0b6b48445f4 Mon Sep 17 00:00:00 2001 From: Random936 Date: Sat, 28 Mar 2026 20:31:48 -0400 Subject: [PATCH] Removing dashboard as it appears to be broken --- .emacs.d/config.org | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index aa0b7ca..e451e1a 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -335,28 +335,6 @@ Projectile is a package for managing various /projects/ in emacs. It adds functi ("C-x C-g" . magit-status))) #+end_src -* Other Packages - -** Dashboard - -The ~dashboard~ package provides a nice dashboard when first starting up emacs. - -#+begin_src elisp -(use-package dashboard - :init - (setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*")) - dashboard-startup-banner 'logo - dashboard-icon-type 'nerd-icons - dashboard-set-file-icons t - dashboard-set-heading-icons t - dashboard-items '((projects . 5) - (recents . 5) - (agenda . 5))) - :config - (set-face-attribute 'dashboard-items-face nil :font "Maple Mono" :height 140) - (dashboard-setup-startup-hook)) -#+end_src - * Import Other Files Function to include other config files.