Dashboard centering and slime

This commit is contained in:
BirDt_ 2025-09-29 04:43:53 +08:00
parent 4f681f35d6
commit 445f4ccf64
2 changed files with 7 additions and 2 deletions

View file

@ -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))

View file

@ -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)