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)