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

This commit is contained in:
Marcus Kammer 2024-10-17 20:26:16 +02:00
commit d20447554b
Signed by: marcuskammer
GPG key ID: C374817BE285268F
3 changed files with 6 additions and 22 deletions

View file

@ -13,8 +13,6 @@
'("88f7ee5594021c60a4a6a1c275614103de8c1435d6d08cc58882f920e0cec65e" "8d3ef5ff6273f2a552152c7febc40eabca26bae05bd12bc85062e2dc224cde9a" "00cec71d41047ebabeb310a325c365d5bc4b7fab0a681a2a108d32fb161b4006" "7e068da4ba88162324d9773ec066d93c447c76e9f4ae711ddd0c5d3863489c52" "7ea883b13485f175d3075c72fceab701b5bf76b2076f024da50dff4107d0db25" "02f57ef0a20b7f61adce51445b68b2a7e832648ce2e7efb19d217b6454c1b644" "1a1ac598737d0fcdc4dfab3af3d6f46ab2d5048b8e72bc22f50271fd6d393a00" "e7820b899036ae7e966dcaaec29fd6b87aef253748b7de09e74fdc54407a7a02" "1781e8bccbd8869472c09b744899ff4174d23e4f7517b8a6c721100288311fa5" "de8f2d8b64627535871495d6fe65b7d0070c4a1eb51550ce258cd240ff9394b0" default))
'(delete-by-moving-to-trash t)
'(diary-file "~/OneDrive - Siemens AG/diary")
'(display-line-numbers-grow-only t)
'(doom-modeline-env-version nil)
'(flycheck-color-mode-line-face-to-color 'mode-line-buffer-id)
'(frame-background-mode 'dark)
'(hl-todo-keyword-faces

View file

@ -3,23 +3,15 @@
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(Info-additional-directory-list '("~/.emacs.d/info/"))
'(bookmark-default-file "~/bookmarks.el")
'(custom-safe-themes
'("1a1ac598737d0fcdc4dfab3af3d6f46ab2d5048b8e72bc22f50271fd6d393a00" "fce3524887a0994f8b9b047aef9cc4cc017c5a93a5fb1f84d300391fba313743" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "37046960cf667c5ab3b76235d35a5db4763c531e706502a9067fa78db5a775c0" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" default))
'(epg-gpg-home-directory "~/AppData/Roaming/gnupg")
'(epg-gpg-program "c:/Program Files (x86)/GnuPG/bin/gpg.exe")
'(epg-gpgconf-program "c:/Program Files (x86)/GnuPG/bin/gpgconf.exe")
'(gptel-use-curl nil)
'(initial-buffer-choice "~/Documents/org/agenda/tasks.org")
'(initial-frame-alist '((fullscreen . maximized)))
'(org-agenda-files '("~/Documents/org/agenda"))
'(org-directory "~/Documents/org")
'(org-latex-src-block-backend t nil nil "Customized with use-package org")
'(org-roam-db-location "~/org-roam.db")
'(org-modules
'(ol-bbdb ol-bibtex ol-docview ol-eww ol-gnus ol-info ol-irc ol-mhe ol-rmail org-tempo ol-w3m))
'(org-roam-directory "~/Documents/org/")
'(package-selected-packages
'(gnuplot ob-http ox-reveal org-web-tools org-tree-slide org-roam elfeed slime gptel dashboard nginx-mode ssh-config-mode which-key auctex plantuml-mode jabber mastodon geiser-racket racket-mode geiser magit go-translate web-mode js2-mode nov shrface htmlize common-lisp-snippets yasnippet ace-window olivetti rainbow-delimiters helpful emojify all-the-icons-dired all-the-icons doom-themes))
'(ring-bell-function 'ignore)
'(tetris-x-colors
[[229 192 123]
@ -28,11 +20,4 @@
[224 108 117]
[152 195 121]
[198 120 221]
[86 182 194]])
'(vc-hg-program "c:/Program Files/TortoiseHg/hg.exe"))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(variable-pitch ((t (:height 114 :family "Noto Serif")))))
[86 182 194]]))

View file

@ -1654,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")