emacs: reindent

This commit is contained in:
Jeremy Baxter 2024-07-19 09:58:18 +12:00
parent f98a06ad41
commit 40118c9d9f

View file

@ -125,7 +125,8 @@
;; slime
(package-install 'slime)
(setq inferior-lisp-program "sbcl")
(add-hook 'slime-repl-mode-hook #'(lambda ()
(add-hook 'slime-repl-mode-hook
#'(lambda ()
(keymap-local-set "C-c l" 'slime-hyperspec-lookup)))
;; minibuffer completion
@ -182,7 +183,8 @@
;; image-dired
(package-install 'image-dired)
(global-set-key (kbd "C-c i") 'image-dired)
(add-hook 'image-dired-thumbnail-mode-hook #'(lambda ()
(add-hook 'image-dired-thumbnail-mode-hook
#'(lambda ()
(keymap-local-set "M-RET" 'image-dired-display-this)))
;; magit
@ -233,10 +235,13 @@
(package-install 'breadcrumb)
(setq breadcrumb-project-crumb-separator " ] "
breadcrumb-imenu-crumb-separator " > ")
(add-hook 'prog-mode-hook #'(lambda ()
(setq header-line-format '(
" " (:eval (breadcrumb-project-crumbs))
" : " (:eval (breadcrumb-imenu-crumbs))))))
(add-hook 'prog-mode-hook
#'(lambda ()
(setq header-line-format
'(" "
(:eval (breadcrumb-project-crumbs))
" : "
(:eval (breadcrumb-imenu-crumbs))))))
;; dashboard
(package-install 'dashboard)
@ -251,7 +256,8 @@
"Merely an interface to your code."
"“We don't use the term corelibs, and I am not sure what that would mean.”"
"50 years and Dired is still the best file manager on the planet")
initial-buffer-choice (lambda () (get-buffer-create dashboard-buffer-name)))
initial-buffer-choice (lambda ()
(get-buffer-create dashboard-buffer-name)))
(add-hook 'after-init-hook 'dashboard-insert-startupify-lists)
(add-hook 'after-init-hook 'dashboard-initialize)