Merge branch 'main' of git.sr.ht:~marcuskammer/emacs.d
This commit is contained in:
commit
0746aa9bb7
1 changed files with 7 additions and 3 deletions
6
init.el
6
init.el
|
@ -920,11 +920,14 @@ Uses `mk/hyperspec-dir-locations' to find the directory."
|
||||||
(face-remap-add-relative 'font-lock-keyword-face nil :slant 'italic))))
|
(face-remap-add-relative 'font-lock-keyword-face nil :slant 'italic))))
|
||||||
:mode (("\\.lisp$" . lisp-mode)
|
:mode (("\\.lisp$" . lisp-mode)
|
||||||
("\\.lsp$" . lisp-mode)
|
("\\.lsp$" . lisp-mode)
|
||||||
("\\.cl$" . lisp-mode))
|
("\\.cl$" . lisp-mode)
|
||||||
|
("\\.asd$" . lisp-mode))
|
||||||
:init
|
:init
|
||||||
(setq inferior-lisp-program "sbcl --noinform")
|
(setq inferior-lisp-program "sbcl --noinform")
|
||||||
|
|
||||||
:config
|
:config
|
||||||
|
(setq-local comment-start ";; ")
|
||||||
|
(setq-local comment-start ";; ")
|
||||||
(setq-local lisp-indent-function 'common-lisp-indent-function)
|
(setq-local lisp-indent-function 'common-lisp-indent-function)
|
||||||
(setq-local fill-column 84)
|
(setq-local fill-column 84)
|
||||||
(defvar g-cl-function-names
|
(defvar g-cl-function-names
|
||||||
|
@ -1651,6 +1654,7 @@ Uses `mk/hyperspec-dir-locations' to find the directory."
|
||||||
(org-latex-images-centered t)
|
(org-latex-images-centered t)
|
||||||
;; Enable listings and other table-related features
|
;; Enable listings and other table-related features
|
||||||
(org-latex-listings t)
|
(org-latex-listings t)
|
||||||
|
(org-latex-src-block-backend 'listings)
|
||||||
;; Customize the appearance of listings (source code blocks)
|
;; Customize the appearance of listings (source code blocks)
|
||||||
(org-latex-listings-options
|
(org-latex-listings-options
|
||||||
'(("basicstyle" "\\ttfamily\\color[rgb]{0.30, 0.34, 0.42}") ; nord3
|
'(("basicstyle" "\\ttfamily\\color[rgb]{0.30, 0.34, 0.42}") ; nord3
|
||||||
|
|
Loading…
Add table
Reference in a new issue