From 445f4ccf64107dd0eeee89bff0607bece6ff3cf5 Mon Sep 17 00:00:00 2001 From: BirDt_ Date: Mon, 29 Sep 2025 04:43:53 +0800 Subject: [PATCH] Dashboard centering and slime --- screens/dashboard.el | 4 ++-- workflows/lisp-custom.el | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/screens/dashboard.el b/screens/dashboard.el index 2d0506b..22d9320 100644 --- a/screens/dashboard.el +++ b/screens/dashboard.el @@ -175,10 +175,10 @@ (setopt grid-revert-on-width-change t) (enlight-content (concat - (grid-make-box `(:align center :content ,enlight-theurgy-logo :width 40)) + (grid-make-box `(:align center :content ,enlight-theurgy-logo :width ,(if (equal system-type 'android) 40 80))) "\n\n" (grid-make-box `( :content ,(propertize "Theurgy Emacs" 'face 'variable-pitch-serif-text) - :width 40 :align center)) + :width ,(if (equal system-type 'android) 40 80) :align center)) "\n\n" (grid-make-box (dashboard-content)) diff --git a/workflows/lisp-custom.el b/workflows/lisp-custom.el index de1a167..07e4663 100644 --- a/workflows/lisp-custom.el +++ b/workflows/lisp-custom.el @@ -36,6 +36,11 @@ (define-key paredit-mode-map (kbd "RET") nil) (define-key paredit-mode-map (kbd "C-j") 'paredit-newline)))) +;; Slimey +(use-package slime + :config + (setq inferior-lisp-program "sbcl")) + ;; SICP my beloved (use-package sicp :ensure t)