Merge branch 'main' of git.sr.ht:~marcuskammer/emacs.d

This commit is contained in:
Marcus Kammer 2024-10-18 14:59:04 +02:00
commit 0746aa9bb7

10
init.el
View file

@ -920,11 +920,14 @@ Uses `mk/hyperspec-dir-locations' to find the directory."
(face-remap-add-relative 'font-lock-keyword-face nil :slant 'italic))))
:mode (("\\.lisp$" . lisp-mode)
("\\.lsp$" . lisp-mode)
("\\.cl$" . lisp-mode))
("\\.cl$" . lisp-mode)
("\\.asd$" . lisp-mode))
:init
(setq inferior-lisp-program "sbcl --noinform")
:config
(setq-local comment-start ";; ")
(setq-local comment-start ";; ")
(setq-local lisp-indent-function 'common-lisp-indent-function)
(setq-local fill-column 84)
(defvar g-cl-function-names
@ -1651,13 +1654,14 @@ Uses `mk/hyperspec-dir-locations' to find the directory."
(org-latex-images-centered t)
;; Enable listings and other table-related features
(org-latex-listings t)
(org-latex-src-block-backend 'listings)
;; Customize the appearance of listings (source code blocks)
(org-latex-listings-options
'(("basicstyle" "\\ttfamily\\color[rgb]{0.30, 0.34, 0.42}") ; nord3
("showstringspaces" "false")
("keywordstyle" "\\color[rgb]{0.23, 0.26, 0.32}\\textbf") ; nord1
("commentstyle" "\\color[rgb]{0.26, 0.30, 0.37}") ; nord2
("stringstyle" "\\color[rgb]{0.18, 0.20, 0.25}") ; nord0
("commentstyle" "\\color[rgb]{0.26, 0.30, 0.37}") ; nord2
("stringstyle" "\\color[rgb]{0.18, 0.20, 0.25}") ; nord0
("frame" "single")
("numbers" "left")
("numbersep" "5pt")