From d6999e382083236711a8ca4f1c85318848d1940a Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Mon, 15 Mar 2021 11:11:00 +0100 Subject: [PATCH 01/51] Remove js2-mode because it slows down json files --- bundle/bundle--package.el | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index 92fc65b8..eacae477 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -66,17 +66,6 @@ There are two things you can do about this warning: (use-package eglot :hook ((python-mode . eglot-ensure) (c-mode . eglot-ensure))) -(use-package js2-mode - :interpreter (("node" . js2-mode)) - :bind (:map js2-mode-map ("C-c C-p" . js2-print-json-path)) - :mode "\\.\\(js\\|json\\)$" - :config - (add-hook 'js-mode-hook 'js2-minor-mode) - (setq js2-basic-offset 2 - js2-highlight-level 3 - js2-mode-show-parse-errors nil - js2-mode-show-strict-warnings nil)) - (use-package web-mode :mode "\\.html?\\'" :init From a5850c8e2a136c5138d9471843d127a03c0eb384 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Tue, 16 Mar 2021 08:34:52 +0100 Subject: [PATCH 02/51] Remove js2-mode because its slow down json files --- bundle/bundle--package.el | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index 92fc65b8..25c8949e 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -66,16 +66,6 @@ There are two things you can do about this warning: (use-package eglot :hook ((python-mode . eglot-ensure) (c-mode . eglot-ensure))) -(use-package js2-mode - :interpreter (("node" . js2-mode)) - :bind (:map js2-mode-map ("C-c C-p" . js2-print-json-path)) - :mode "\\.\\(js\\|json\\)$" - :config - (add-hook 'js-mode-hook 'js2-minor-mode) - (setq js2-basic-offset 2 - js2-highlight-level 3 - js2-mode-show-parse-errors nil - js2-mode-show-strict-warnings nil)) (use-package web-mode :mode "\\.html?\\'" From 78804febc8442bc90dabb7c9d6d03ae2895a7f6e Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Thu, 18 Mar 2021 20:52:11 +0100 Subject: [PATCH 03/51] Use eglot for type and javascript --- bundle/bundle--package.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index eacae477..917189d4 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -63,8 +63,13 @@ There are two things you can do about this warning: (use-package pyvenv :init (pyvenv-mode 1)) +(use-package typescript-mode) + (use-package eglot - :hook ((python-mode . eglot-ensure) (c-mode . eglot-ensure))) + :hook ((python-mode . eglot-ensure) + (c-mode . eglot-ensure) + (js-mode . eglot-ensure) + (typescript-mode . eglot-ensure))) (use-package web-mode :mode "\\.html?\\'" From 0d6cda2c9065ecb4976f10eb479363cb9a90d4a1 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Thu, 18 Mar 2021 20:52:50 +0100 Subject: [PATCH 04/51] Update customfile for win32 --- bundle/custom_win32_EVG02667NB.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/custom_win32_EVG02667NB.el b/bundle/custom_win32_EVG02667NB.el index 298955f1..4a9a3eed 100644 --- a/bundle/custom_win32_EVG02667NB.el +++ b/bundle/custom_win32_EVG02667NB.el @@ -46,7 +46,7 @@ "c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar") '(org-refile-targets '((nil :maxlevel . 3))) '(package-selected-packages - '(websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich helpful nov gnu-elpa-keyring-update slime-company elpy eglot color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) + '(typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich helpful nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) '(plantuml-default-exec-mode 'jar) '(plantuml-jar-path "c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar") From c3301000969bd875d37544b96a7691232b3ac20f Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Mon, 22 Mar 2021 16:50:39 +0100 Subject: [PATCH 05/51] Update package for win32 --- bundle/custom_win32_EVG02667NB.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/custom_win32_EVG02667NB.el b/bundle/custom_win32_EVG02667NB.el index 4a9a3eed..2a3db506 100644 --- a/bundle/custom_win32_EVG02667NB.el +++ b/bundle/custom_win32_EVG02667NB.el @@ -46,7 +46,7 @@ "c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar") '(org-refile-targets '((nil :maxlevel . 3))) '(package-selected-packages - '(typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich helpful nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) + '(ac-emmet typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich helpful nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) '(plantuml-default-exec-mode 'jar) '(plantuml-jar-path "c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar") From b78fe6fbe96a239e7f42303e7084014a49bcc9c6 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Sat, 27 Mar 2021 08:41:32 +0100 Subject: [PATCH 06/51] Update customfile for linux --- bundle/custom_gnu.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index b0348d1f..14dcbb16 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -3,6 +3,7 @@ ;; 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 nil) '(TeX-engine 'xetex) '(ansi-color-faces-vector [default default default italic underline success warning error]) @@ -26,7 +27,7 @@ '(package-selected-packages '(parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) '(scroll-bar-mode nil) - '(tab-bar-mode nil)) + '(tab-bar-mode t)) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. From 46d73ad26b42cd29364b68ada6487b0df1713906 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Mon, 29 Mar 2021 08:10:21 +0200 Subject: [PATCH 07/51] Update customfile for linux --- bundle/custom_gnu.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index 14dcbb16..d7552cca 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -4,6 +4,7 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(Info-additional-directory-list nil) + '(Info-default-directory-list '("~/Documents/info/" "/usr/share/info/")) '(TeX-engine 'xetex) '(ansi-color-faces-vector [default default default italic underline success warning error]) @@ -25,7 +26,7 @@ '(org-plantuml-jar-path "~/.local/bin/plantuml.jar") '(package-enable-at-startup t) '(package-selected-packages - '(parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) + '(ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) '(scroll-bar-mode nil) '(tab-bar-mode t)) (custom-set-faces From 98369e8295fd4eefc58d1366b6d22028c6090dcf Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Thu, 8 Apr 2021 09:36:11 +0200 Subject: [PATCH 08/51] win32 install new themes --- bundle/custom_win32_EVG02667NB.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/custom_win32_EVG02667NB.el b/bundle/custom_win32_EVG02667NB.el index 2a3db506..137af7c5 100644 --- a/bundle/custom_win32_EVG02667NB.el +++ b/bundle/custom_win32_EVG02667NB.el @@ -46,7 +46,7 @@ "c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar") '(org-refile-targets '((nil :maxlevel . 3))) '(package-selected-packages - '(ac-emmet typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich helpful nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) + '(flucui-themes zenburn-theme spacemacs-theme helpful ac-emmet typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) '(plantuml-default-exec-mode 'jar) '(plantuml-jar-path "c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar") From 2ab2ceb00363af6e698db1fd86b316dd542de870 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Thu, 8 Apr 2021 09:38:29 +0200 Subject: [PATCH 09/51] Update custom file for win32 --- bundle/custom_win32_EVG02667NB.el | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/bundle/custom_win32_EVG02667NB.el b/bundle/custom_win32_EVG02667NB.el index 137af7c5..f7c175cb 100644 --- a/bundle/custom_win32_EVG02667NB.el +++ b/bundle/custom_win32_EVG02667NB.el @@ -10,21 +10,26 @@ '(ansi-color-names-vector ["#21252B" "#E06C75" "#98C379" "#E5C07B" "#61AFEF" "#C678DD" "#56B6C2" "#ABB2BF"]) '(backup-directory-alist '(("." . "~/.backup_filez"))) - '(custom-enabled-themes '(atom-one-dark)) + '(beacon-color "#d54e53") + '(company-quickhelp-color-background "#4F4F4F") + '(company-quickhelp-color-foreground "#DCDCCC") + '(custom-enabled-themes '(spacemacs-dark)) '(custom-safe-themes - '("171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "37046960cf667c5ab3b76235d35a5db4763c531e706502a9067fa78db5a775c0" "e71c6667c26e34f3b59a1c5b3e27a1606fa427b9ba6515b0d8c8130506e68c81" "8efa3d21b3fa1ac084798fae4e89848ec26ae5c724b9417caf4922f4b2e31c2a" "5b7c31eb904d50c470ce264318f41b3bbc85545e4359e6b7d48ee88a892b1915" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "bb08c73af94ee74453c90422485b29e5643b73b05e8de029a6909af6a3fb3f58" default)) + '("bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" "d548ac4bb4c8c0ba8f22476f5afcea11b7f1754065eefb118e1324f8a74883fb" "06f0b439b62164c6f8f84fdda32b62fb50b6d00e8b01c2208e55543a6337433a" "82d2cac368ccdec2fcc7573f24c3f79654b78bf133096f9b40c20d97ec1d8016" "fa2b58bb98b62c3b8cf3b6f02f058ef7827a8e497125de0254f56e373abee088" "e6df46d5085fde0ad56a46ef69ebb388193080cc9819e2d6024c9c6e27388ba9" "1b8d67b43ff1723960eb5e0cba512a2c7a2ad544ddb2533a90101fd1852b426e" "628278136f88aa1a151bb2d6c8a86bf2b7631fbea5f0f76cba2a0079cd910f7d" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "37046960cf667c5ab3b76235d35a5db4763c531e706502a9067fa78db5a775c0" "e71c6667c26e34f3b59a1c5b3e27a1606fa427b9ba6515b0d8c8130506e68c81" "8efa3d21b3fa1ac084798fae4e89848ec26ae5c724b9417caf4922f4b2e31c2a" "5b7c31eb904d50c470ce264318f41b3bbc85545e4359e6b7d48ee88a892b1915" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "bb08c73af94ee74453c90422485b29e5643b73b05e8de029a6909af6a3fb3f58" default)) '(delete-by-moving-to-trash t) '(diary-file "d:/UserData/marcus.kammer/OneDrive - Siemens AG/documents/Diary/diary") '(display-line-numbers-grow-only t) - '(fci-rule-color "#3E4451") + '(flycheck-color-mode-line-face-to-color 'mode-line-buffer-id) '(forge-alist '(("github.com" "api.github.com" "github.com" forge-github-repository) ("gitlab.com" "gitlab.com/api/v4" "gitlab.com" forge-gitlab-repository) ("code.siemens.com" "code.siemens.com/api/v4" "code.siemens.com" forge-gitlab-repository))) + '(frame-background-mode 'dark) '(initial-buffer-choice "d:/UserData/marcus.kammer/OneDrive - Siemens AG/documents/Journal/notes.org") '(initial-frame-alist '((fullscreen . maximized))) + '(ispell-program-name "~/AppData/Local/Programs/msys64/mingw64/bin/aspell.exe" t) '(ls-lisp-dirs-first t) '(nov-text-width nil) '(nov-unzip-program From 5a9d70e9b6e8569a5340dc3d36cf65ba88dbd7c1 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Thu, 8 Apr 2021 18:24:44 +0200 Subject: [PATCH 10/51] Update transparency --- bundle/bundle--defaults.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/bundle--defaults.el b/bundle/bundle--defaults.el index 8537ffd9..a267b375 100644 --- a/bundle/bundle--defaults.el +++ b/bundle/bundle--defaults.el @@ -65,7 +65,7 @@ ;; Windows, Frames (setq default-frame-alist '((font . "Fira Code-11") - (alpha . 100) + (alpha . 98) (width . 94) (height . 70))) From 0f25a2cd8fa49d7555d2745bde10ddbd4952ed10 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Thu, 8 Apr 2021 18:25:26 +0200 Subject: [PATCH 11/51] Update eglot - add rust mode --- bundle/bundle--package.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index 917189d4..de538dd4 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -69,7 +69,8 @@ There are two things you can do about this warning: :hook ((python-mode . eglot-ensure) (c-mode . eglot-ensure) (js-mode . eglot-ensure) - (typescript-mode . eglot-ensure))) + (typescript-mode . eglot-ensure) + (rust-mode . eglot-ensure))) (use-package web-mode :mode "\\.html?\\'" From 473092d91fb249f1eaf0108a42db863fd6350f66 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Thu, 8 Apr 2021 18:26:20 +0200 Subject: [PATCH 12/51] Use Dracular theme (win32) --- bundle/custom_win32_EVG02667NB.el | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/bundle/custom_win32_EVG02667NB.el b/bundle/custom_win32_EVG02667NB.el index f7c175cb..c702ccb1 100644 --- a/bundle/custom_win32_EVG02667NB.el +++ b/bundle/custom_win32_EVG02667NB.el @@ -13,9 +13,9 @@ '(beacon-color "#d54e53") '(company-quickhelp-color-background "#4F4F4F") '(company-quickhelp-color-foreground "#DCDCCC") - '(custom-enabled-themes '(spacemacs-dark)) + '(custom-enabled-themes '(dracula)) '(custom-safe-themes - '("bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" "d548ac4bb4c8c0ba8f22476f5afcea11b7f1754065eefb118e1324f8a74883fb" "06f0b439b62164c6f8f84fdda32b62fb50b6d00e8b01c2208e55543a6337433a" "82d2cac368ccdec2fcc7573f24c3f79654b78bf133096f9b40c20d97ec1d8016" "fa2b58bb98b62c3b8cf3b6f02f058ef7827a8e497125de0254f56e373abee088" "e6df46d5085fde0ad56a46ef69ebb388193080cc9819e2d6024c9c6e27388ba9" "1b8d67b43ff1723960eb5e0cba512a2c7a2ad544ddb2533a90101fd1852b426e" "628278136f88aa1a151bb2d6c8a86bf2b7631fbea5f0f76cba2a0079cd910f7d" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "37046960cf667c5ab3b76235d35a5db4763c531e706502a9067fa78db5a775c0" "e71c6667c26e34f3b59a1c5b3e27a1606fa427b9ba6515b0d8c8130506e68c81" "8efa3d21b3fa1ac084798fae4e89848ec26ae5c724b9417caf4922f4b2e31c2a" "5b7c31eb904d50c470ce264318f41b3bbc85545e4359e6b7d48ee88a892b1915" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "bb08c73af94ee74453c90422485b29e5643b73b05e8de029a6909af6a3fb3f58" default)) + '("81c3de64d684e23455236abde277cda4b66509ef2c28f66e059aa925b8b12534" "bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" "d548ac4bb4c8c0ba8f22476f5afcea11b7f1754065eefb118e1324f8a74883fb" "06f0b439b62164c6f8f84fdda32b62fb50b6d00e8b01c2208e55543a6337433a" "82d2cac368ccdec2fcc7573f24c3f79654b78bf133096f9b40c20d97ec1d8016" "fa2b58bb98b62c3b8cf3b6f02f058ef7827a8e497125de0254f56e373abee088" "e6df46d5085fde0ad56a46ef69ebb388193080cc9819e2d6024c9c6e27388ba9" "1b8d67b43ff1723960eb5e0cba512a2c7a2ad544ddb2533a90101fd1852b426e" "628278136f88aa1a151bb2d6c8a86bf2b7631fbea5f0f76cba2a0079cd910f7d" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "37046960cf667c5ab3b76235d35a5db4763c531e706502a9067fa78db5a775c0" "e71c6667c26e34f3b59a1c5b3e27a1606fa427b9ba6515b0d8c8130506e68c81" "8efa3d21b3fa1ac084798fae4e89848ec26ae5c724b9417caf4922f4b2e31c2a" "5b7c31eb904d50c470ce264318f41b3bbc85545e4359e6b7d48ee88a892b1915" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "bb08c73af94ee74453c90422485b29e5643b73b05e8de029a6909af6a3fb3f58" default)) '(delete-by-moving-to-trash t) '(diary-file "d:/UserData/marcus.kammer/OneDrive - Siemens AG/documents/Diary/diary") @@ -26,6 +26,22 @@ ("gitlab.com" "gitlab.com/api/v4" "gitlab.com" forge-gitlab-repository) ("code.siemens.com" "code.siemens.com/api/v4" "code.siemens.com" forge-gitlab-repository))) '(frame-background-mode 'dark) + '(hl-todo-keyword-faces + '(("TODO" . "#dc752f") + ("NEXT" . "#dc752f") + ("THEM" . "#2d9574") + ("PROG" . "#4f97d7") + ("OKAY" . "#4f97d7") + ("DONT" . "#f2241f") + ("FAIL" . "#f2241f") + ("DONE" . "#86dc2f") + ("NOTE" . "#b1951d") + ("KLUDGE" . "#b1951d") + ("HACK" . "#b1951d") + ("TEMP" . "#b1951d") + ("FIXME" . "#dc752f") + ("XXX+" . "#dc752f") + ("\\?\\?\\?+" . "#dc752f"))) '(initial-buffer-choice "d:/UserData/marcus.kammer/OneDrive - Siemens AG/documents/Journal/notes.org") '(initial-frame-alist '((fullscreen . maximized))) @@ -51,7 +67,8 @@ "c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar") '(org-refile-targets '((nil :maxlevel . 3))) '(package-selected-packages - '(flucui-themes zenburn-theme spacemacs-theme helpful ac-emmet typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) + '(dracula-theme flucui-themes zenburn-theme spacemacs-theme helpful ac-emmet typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) + '(pdf-view-midnight-colors '("#b2b2b2" . "#292b2e")) '(plantuml-default-exec-mode 'jar) '(plantuml-jar-path "c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar") From f534b1b23db9799f863ae8c7d11df655e4dba55b Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Thu, 8 Apr 2021 18:59:26 +0200 Subject: [PATCH 13/51] Update packages for linux --- bundle/custom_gnu.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index d7552cca..afd63c7c 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -26,7 +26,7 @@ '(org-plantuml-jar-path "~/.local/bin/plantuml.jar") '(package-enable-at-startup t) '(package-selected-packages - '(ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) + '(jinja2-mode ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) '(scroll-bar-mode nil) '(tab-bar-mode t)) (custom-set-faces From 7d1e4f2235dfa9289eaf3fe6292a6fad4de56210 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Thu, 8 Apr 2021 19:22:33 +0200 Subject: [PATCH 14/51] Use ddracula theme in kitty --- kitty.conf | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/kitty.conf b/kitty.conf index f68332ae..52d9bb71 100644 --- a/kitty.conf +++ b/kitty.conf @@ -510,37 +510,7 @@ selection_background #FFFACD # - https://gist.github.com/marcusramberg/64010234c95a93d953e8c79fdaf94192 # - https://github.com/arcticicestudio/nord-hyper -# black -color0 #3B4252 -color8 #4C566A - -# red -color1 #BF616A -color9 #BF616A - -# green -color2 #A3BE8C -color10 #A3BE8C - -# yellow -color3 #EBCB8B -color11 #EBCB8B - -# blue -color4 #81A1C1 -color12 #81A1C1 - -# magenta -color5 #B48EAD -color13 #B48EAD - -# cyan -color6 #88C0D0 -color14 #8FBCBB - -# white -color7 #E5E9F0 -color15 #B48EAD +include dracula.conf #: }}} From c8ff1b07e1f97d8a7eb7defe6842005e3d5150cc Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Mon, 12 Apr 2021 07:57:08 +0200 Subject: [PATCH 15/51] Update rust/cargo env --- .profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.profile b/.profile index 2f234dfb..b1e47457 100644 --- a/.profile +++ b/.profile @@ -37,7 +37,7 @@ if [ -d "$HOME/.local/bin" ] ; then PATH="$HOME/.local/bin:$PATH" fi -export PATH="$HOME/.cargo/bin:$PATH" export PATH="$HOME/.npm-packages/bin:$PATH" source ~/.apikeys +source "$HOME/.cargo/env" From b0be22bd1b782348e0491dbb807baedf8d933609 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Mon, 12 Apr 2021 07:57:17 +0200 Subject: [PATCH 16/51] Remove alpha --- bundle/bundle--defaults.el | 1 - 1 file changed, 1 deletion(-) diff --git a/bundle/bundle--defaults.el b/bundle/bundle--defaults.el index a267b375..b6a4ddef 100644 --- a/bundle/bundle--defaults.el +++ b/bundle/bundle--defaults.el @@ -65,7 +65,6 @@ ;; Windows, Frames (setq default-frame-alist '((font . "Fira Code-11") - (alpha . 98) (width . 94) (height . 70))) From c667857a9f6fdedf61aa073349e3d5a51faf6854 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Mon, 12 Apr 2021 07:57:25 +0200 Subject: [PATCH 17/51] Update gnu customfile --- bundle/custom_gnu.el | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index afd63c7c..c95597ab 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -11,24 +11,34 @@ '(ansi-color-names-vector ["#212526" "#ff4b4b" "#b4fa70" "#fce94f" "#729fcf" "#e090d7" "#8cc4ff" "#eeeeec"]) '(backup-directory-alist '(("." . "~/.backup_filez"))) - '(custom-enabled-themes '(atom-one-dark)) + '(custom-enabled-themes '(dracula)) '(custom-safe-themes - '("171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "fe36e4da2ca97d9d706e569024caa996f8368044a8253dc645782e01cd68d884" "1fbd63256477789327fe429bd318fb90a8a42e5f2756dd1a94805fc810ae1b62" "7bc40a2e714b4872ad5cd07f992eb8e06ef5e01a8877488b9ffc3067463ca721" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "06bf0822aa77ea498bbd6038b59ad96fca43b272b49b18ab024218881ba134d1" "6e933f1668e124ec17fc7b6547f65ba760e06efb568a6c8091c600c67827e592" "7f6d4aebcc44c264a64e714c3d9d1e903284305fd7e319e7cb73345a9994f5ef" default)) + '("81c3de64d684e23455236abde277cda4b66509ef2c28f66e059aa925b8b12534" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "fe36e4da2ca97d9d706e569024caa996f8368044a8253dc645782e01cd68d884" "1fbd63256477789327fe429bd318fb90a8a42e5f2756dd1a94805fc810ae1b62" "7bc40a2e714b4872ad5cd07f992eb8e06ef5e01a8877488b9ffc3067463ca721" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "06bf0822aa77ea498bbd6038b59ad96fca43b272b49b18ab024218881ba134d1" "6e933f1668e124ec17fc7b6547f65ba760e06efb568a6c8091c600c67827e592" "7f6d4aebcc44c264a64e714c3d9d1e903284305fd7e319e7cb73345a9994f5ef" default)) + '(default-frame-alist '((font . "Fira Code-11") (width . 94) (height . 70))) '(delete-selection-mode nil) '(diary-file "~/Documents/diary/diary") '(fci-rule-color "#4C566A") '(gnus-init-file "~/.emacs.d/.gnus.el") '(hl-paren-colors '("#B9F" "#B8D" "#B7B" "#B69" "#B57" "#B45" "#B33" "#B11")) '(initial-buffer-choice "~/Documents/journal/notes.org") + '(initial-frame-alist '((fullscreen . fullscreen))) '(olivetti-body-width 82 nil nil "Customized with use-package olivetti") '(org-modules '(ol-bbdb ol-docview ol-eww ol-gnus ol-info ol-irc ol-mhe ol-rmail org-tempo ol-w3m orgtbl-sqlinsert)) '(org-plantuml-jar-path "~/.local/bin/plantuml.jar") '(package-enable-at-startup t) '(package-selected-packages - '(jinja2-mode ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) + '(rust-mode spacemacs-theme dracula-theme jinja2-mode ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) '(scroll-bar-mode nil) - '(tab-bar-mode t)) + '(tab-bar-mode nil) + '(tetris-x-colors + [[229 192 123] + [97 175 239] + [209 154 102] + [224 108 117] + [152 195 121] + [198 120 221] + [86 182 194]])) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. From 0e3a3e798b3fa83098a1fa44ee93a91cbfd03d75 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Mon, 12 Apr 2021 07:57:34 +0200 Subject: [PATCH 18/51] Update transparency for kitty --- kitty.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty.conf b/kitty.conf index 52d9bb71..873b95cb 100644 --- a/kitty.conf +++ b/kitty.conf @@ -463,7 +463,7 @@ background #2E3440 #: The foreground and background colors -background_opacity 0.99 +background_opacity 0.98 #: The opacity of the background. A number between 0 and 1, where 1 is #: opaque and 0 is fully transparent. This will only work if From 2e50dfe7ba33ef8d4f38152e7d4c2814d4c5c547 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Mon, 12 Apr 2021 20:14:43 +0200 Subject: [PATCH 19/51] Do not change heading size using dracula theme --- bundle/bundle--defaults.el | 1 + 1 file changed, 1 insertion(+) diff --git a/bundle/bundle--defaults.el b/bundle/bundle--defaults.el index b6a4ddef..5de3edfa 100644 --- a/bundle/bundle--defaults.el +++ b/bundle/bundle--defaults.el @@ -61,6 +61,7 @@ (put 'narrow-to-page 'disabled nil) (add-hook 'text-mode-hook 'turn-on-auto-fill) (defalias 'yes-or-no-p 'y-or-n-p) +(setq dracula-enlarge-headings nil) ;; Windows, Frames (setq default-frame-alist From 637f8d4f828141556a5e3adfb3b8f53db03ffa99 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Tue, 13 Apr 2021 08:50:45 +0200 Subject: [PATCH 20/51] Update gnu customfile --- bundle/custom_gnu.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index c95597ab..50227bdb 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -14,14 +14,18 @@ '(custom-enabled-themes '(dracula)) '(custom-safe-themes '("81c3de64d684e23455236abde277cda4b66509ef2c28f66e059aa925b8b12534" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "fe36e4da2ca97d9d706e569024caa996f8368044a8253dc645782e01cd68d884" "1fbd63256477789327fe429bd318fb90a8a42e5f2756dd1a94805fc810ae1b62" "7bc40a2e714b4872ad5cd07f992eb8e06ef5e01a8877488b9ffc3067463ca721" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "06bf0822aa77ea498bbd6038b59ad96fca43b272b49b18ab024218881ba134d1" "6e933f1668e124ec17fc7b6547f65ba760e06efb568a6c8091c600c67827e592" "7f6d4aebcc44c264a64e714c3d9d1e903284305fd7e319e7cb73345a9994f5ef" default)) - '(default-frame-alist '((font . "Fira Code-11") (width . 94) (height . 70))) + '(default-frame-alist + '((font . "Fira Code-11") + (width . 90) + (height . 60) + (alpha . 98))) '(delete-selection-mode nil) '(diary-file "~/Documents/diary/diary") '(fci-rule-color "#4C566A") '(gnus-init-file "~/.emacs.d/.gnus.el") '(hl-paren-colors '("#B9F" "#B8D" "#B7B" "#B69" "#B57" "#B45" "#B33" "#B11")) '(initial-buffer-choice "~/Documents/journal/notes.org") - '(initial-frame-alist '((fullscreen . fullscreen))) + '(initial-frame-alist '((vertical-scroll-bars))) '(olivetti-body-width 82 nil nil "Customized with use-package olivetti") '(org-modules '(ol-bbdb ol-docview ol-eww ol-gnus ol-info ol-irc ol-mhe ol-rmail org-tempo ol-w3m orgtbl-sqlinsert)) From 020e5e0e6ff66d0fd6d3c791171d56da58444e24 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Tue, 20 Apr 2021 09:52:02 +0200 Subject: [PATCH 21/51] Update win32 customfile --- bundle/custom_win32_EVG02667NB.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bundle/custom_win32_EVG02667NB.el b/bundle/custom_win32_EVG02667NB.el index c702ccb1..1f3d806d 100644 --- a/bundle/custom_win32_EVG02667NB.el +++ b/bundle/custom_win32_EVG02667NB.el @@ -16,6 +16,11 @@ '(custom-enabled-themes '(dracula)) '(custom-safe-themes '("81c3de64d684e23455236abde277cda4b66509ef2c28f66e059aa925b8b12534" "bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" "d548ac4bb4c8c0ba8f22476f5afcea11b7f1754065eefb118e1324f8a74883fb" "06f0b439b62164c6f8f84fdda32b62fb50b6d00e8b01c2208e55543a6337433a" "82d2cac368ccdec2fcc7573f24c3f79654b78bf133096f9b40c20d97ec1d8016" "fa2b58bb98b62c3b8cf3b6f02f058ef7827a8e497125de0254f56e373abee088" "e6df46d5085fde0ad56a46ef69ebb388193080cc9819e2d6024c9c6e27388ba9" "1b8d67b43ff1723960eb5e0cba512a2c7a2ad544ddb2533a90101fd1852b426e" "628278136f88aa1a151bb2d6c8a86bf2b7631fbea5f0f76cba2a0079cd910f7d" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "37046960cf667c5ab3b76235d35a5db4763c531e706502a9067fa78db5a775c0" "e71c6667c26e34f3b59a1c5b3e27a1606fa427b9ba6515b0d8c8130506e68c81" "8efa3d21b3fa1ac084798fae4e89848ec26ae5c724b9417caf4922f4b2e31c2a" "5b7c31eb904d50c470ce264318f41b3bbc85545e4359e6b7d48ee88a892b1915" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "bb08c73af94ee74453c90422485b29e5643b73b05e8de029a6909af6a3fb3f58" default)) + '(default-frame-alist + '((font . "Fira Code-12") + (width . 91) + (height . 60) + (alpha . 98))) '(delete-by-moving-to-trash t) '(diary-file "d:/UserData/marcus.kammer/OneDrive - Siemens AG/documents/Diary/diary") @@ -44,7 +49,7 @@ ("\\?\\?\\?+" . "#dc752f"))) '(initial-buffer-choice "d:/UserData/marcus.kammer/OneDrive - Siemens AG/documents/Journal/notes.org") - '(initial-frame-alist '((fullscreen . maximized))) + '(initial-frame-alist '((vertical-scroll-bars) (fullscreen . fullscreen))) '(ispell-program-name "~/AppData/Local/Programs/msys64/mingw64/bin/aspell.exe" t) '(ls-lisp-dirs-first t) '(nov-text-width nil) From 67cce701cfa522b94966947565a95da98e1ef184 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Tue, 20 Apr 2021 18:41:39 +0200 Subject: [PATCH 22/51] Enable rust in eglot --- bundle/bundle--package.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index de538dd4..de4d74d0 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -132,7 +132,8 @@ There are two things you can do about this warning: ("shell" . sh) ("C" . c) ("sqlite" . sql) - ("plantuml" . plantuml))) + ("plantuml" . plantuml) + ("rust" . rust))) org-use-property-inheritance nil org-export-with-sub-superscripts nil org-capture-templates (quote @@ -159,7 +160,8 @@ There are two things you can do about this warning: (calc . t) (plantuml . t) (C . t) - (dot . t))))) + (dot . t) + (rust . t))))) (use-package helpful From 03cd222d7cc1d6cc014ffd4ee91705cce859e1e6 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Tue, 20 Apr 2021 18:42:10 +0200 Subject: [PATCH 23/51] Update gnu custom file --- bundle/custom_gnu.el | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index 50227bdb..4ad0cce7 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -3,8 +3,8 @@ ;; 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 nil) - '(Info-default-directory-list '("~/Documents/info/" "/usr/share/info/")) + '(Info-additional-directory-list '("~/Documents/info/")) + '(Info-default-directory-list '("/usr/share/info/")) '(TeX-engine 'xetex) '(ansi-color-faces-vector [default default default italic underline success warning error]) @@ -14,25 +14,21 @@ '(custom-enabled-themes '(dracula)) '(custom-safe-themes '("81c3de64d684e23455236abde277cda4b66509ef2c28f66e059aa925b8b12534" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "fe36e4da2ca97d9d706e569024caa996f8368044a8253dc645782e01cd68d884" "1fbd63256477789327fe429bd318fb90a8a42e5f2756dd1a94805fc810ae1b62" "7bc40a2e714b4872ad5cd07f992eb8e06ef5e01a8877488b9ffc3067463ca721" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "06bf0822aa77ea498bbd6038b59ad96fca43b272b49b18ab024218881ba134d1" "6e933f1668e124ec17fc7b6547f65ba760e06efb568a6c8091c600c67827e592" "7f6d4aebcc44c264a64e714c3d9d1e903284305fd7e319e7cb73345a9994f5ef" default)) - '(default-frame-alist - '((font . "Fira Code-11") - (width . 90) - (height . 60) - (alpha . 98))) + '(default-frame-alist '((font . "Fira Code-12") (width . 90) (height . 70))) '(delete-selection-mode nil) '(diary-file "~/Documents/diary/diary") '(fci-rule-color "#4C566A") '(gnus-init-file "~/.emacs.d/.gnus.el") '(hl-paren-colors '("#B9F" "#B8D" "#B7B" "#B69" "#B57" "#B45" "#B33" "#B11")) '(initial-buffer-choice "~/Documents/journal/notes.org") - '(initial-frame-alist '((vertical-scroll-bars))) + '(initial-frame-alist '((fullscreen . maximized))) '(olivetti-body-width 82 nil nil "Customized with use-package olivetti") '(org-modules '(ol-bbdb ol-docview ol-eww ol-gnus ol-info ol-irc ol-mhe ol-rmail org-tempo ol-w3m orgtbl-sqlinsert)) '(org-plantuml-jar-path "~/.local/bin/plantuml.jar") '(package-enable-at-startup t) '(package-selected-packages - '(rust-mode spacemacs-theme dracula-theme jinja2-mode ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) + '(ob-rust rust-mode spacemacs-theme dracula-theme jinja2-mode ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) '(scroll-bar-mode nil) '(tab-bar-mode nil) '(tetris-x-colors From 1a5fa21e42797ca37ef3aabc7f3e4285af6e75bb Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Tue, 20 Apr 2021 18:42:23 +0200 Subject: [PATCH 24/51] Increase font size --- kitty.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty.conf b/kitty.conf index 873b95cb..b4e79577 100644 --- a/kitty.conf +++ b/kitty.conf @@ -22,7 +22,7 @@ italic_font Fira Code Italic #: italic_font Operator Mono Book Italic #: bold_italic_font Operator Mono Medium Italic -font_size 11 +font_size 12 #: Font size (in pts) From 0f7b6c5a9bd0445d8497b2953d1766df79315b12 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Wed, 21 Apr 2021 08:26:34 +0200 Subject: [PATCH 25/51] Update profile file --- .profile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.profile b/.profile index b1e47457..35672dfd 100644 --- a/.profile +++ b/.profile @@ -37,7 +37,9 @@ if [ -d "$HOME/.local/bin" ] ; then PATH="$HOME/.local/bin:$PATH" fi -export PATH="$HOME/.npm-packages/bin:$PATH" +export PATH="$PATH:$HOME/.npm-packages/bin" +export PATH="$PATH:/usr/local/go/bin" +export PATH="$PATH:$HOME/go/bin" source ~/.apikeys source "$HOME/.cargo/env" From e796cd9fdb42d0c3f8c90459a7d94999a5726128 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Wed, 21 Apr 2021 08:26:44 +0200 Subject: [PATCH 26/51] Add got mode packages --- bundle/bundle--package.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index de4d74d0..2ba2ada2 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -65,12 +65,15 @@ There are two things you can do about this warning: (use-package typescript-mode) +(use-package go-mode) + (use-package eglot :hook ((python-mode . eglot-ensure) (c-mode . eglot-ensure) (js-mode . eglot-ensure) (typescript-mode . eglot-ensure) - (rust-mode . eglot-ensure))) + (rust-mode . eglot-ensure) + (go-mode . eglot-ensure))) (use-package web-mode :mode "\\.html?\\'" From 70163bfc63034bff32e49ad29897612de6a91841 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Wed, 21 Apr 2021 08:26:59 +0200 Subject: [PATCH 27/51] Update gnu custom file --- bundle/custom_gnu.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index 4ad0cce7..2f67962c 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -28,7 +28,7 @@ '(org-plantuml-jar-path "~/.local/bin/plantuml.jar") '(package-enable-at-startup t) '(package-selected-packages - '(ob-rust rust-mode spacemacs-theme dracula-theme jinja2-mode ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) + '(go-mode ob-rust rust-mode spacemacs-theme dracula-theme jinja2-mode ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) '(scroll-bar-mode nil) '(tab-bar-mode nil) '(tetris-x-colors From 62660ca5372d495277363fab0a6625a304701558 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Thu, 22 Apr 2021 16:06:12 +0200 Subject: [PATCH 28/51] Update bundle package --- bundle/bundle--package.el | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index de538dd4..eba40e8c 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -70,7 +70,15 @@ There are two things you can do about this warning: (c-mode . eglot-ensure) (js-mode . eglot-ensure) (typescript-mode . eglot-ensure) - (rust-mode . eglot-ensure))) + (rust-mode . eglot-ensure) + (go-mode-hook . eglot-ensure))) + +(use-package ob-rust) + +(use-package go-mode + :hook ('before-save-hook . #'gofmt-before-save)) + +(use-package ob-go) (use-package web-mode :mode "\\.html?\\'" @@ -159,7 +167,8 @@ There are two things you can do about this warning: (calc . t) (plantuml . t) (C . t) - (dot . t))))) + (dot . t) + (go . t))))) (use-package helpful From d74e292dd58501b9e9557c5435919c5311c36158 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Thu, 22 Apr 2021 16:07:53 +0200 Subject: [PATCH 29/51] Update win32 customfile --- bundle/custom_win32_EVG02667NB.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/custom_win32_EVG02667NB.el b/bundle/custom_win32_EVG02667NB.el index 1f3d806d..1cfd321d 100644 --- a/bundle/custom_win32_EVG02667NB.el +++ b/bundle/custom_win32_EVG02667NB.el @@ -72,7 +72,7 @@ "c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar") '(org-refile-targets '((nil :maxlevel . 3))) '(package-selected-packages - '(dracula-theme flucui-themes zenburn-theme spacemacs-theme helpful ac-emmet typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) + '(ob-rust ob-go go-mode dracula-theme flucui-themes zenburn-theme spacemacs-theme helpful ac-emmet typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) '(pdf-view-midnight-colors '("#b2b2b2" . "#292b2e")) '(plantuml-default-exec-mode 'jar) '(plantuml-jar-path From 37930c35c44bb79271a271a73ba097229775b270 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sun, 25 Apr 2021 14:31:05 +0200 Subject: [PATCH 30/51] Call gofmt when go file is loaded --- bundle/bundle--package.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index 876b24e2..1ae21d1d 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -78,7 +78,8 @@ There are two things you can do about this warning: (use-package ob-rust) (use-package go-mode - :hook ('before-save-hook . #'gofmt-before-save)) + :init + (add-hook 'before-save-hook #'gofmt-before-save)) (use-package ob-go) From 0a48e15e7f3e6a0580b0639b128fdbec97a0c883 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sun, 25 Apr 2021 14:31:30 +0200 Subject: [PATCH 31/51] Update gnu customfile --- bundle/custom_gnu.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index 2f67962c..9b65ab61 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -14,7 +14,11 @@ '(custom-enabled-themes '(dracula)) '(custom-safe-themes '("81c3de64d684e23455236abde277cda4b66509ef2c28f66e059aa925b8b12534" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "fe36e4da2ca97d9d706e569024caa996f8368044a8253dc645782e01cd68d884" "1fbd63256477789327fe429bd318fb90a8a42e5f2756dd1a94805fc810ae1b62" "7bc40a2e714b4872ad5cd07f992eb8e06ef5e01a8877488b9ffc3067463ca721" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "06bf0822aa77ea498bbd6038b59ad96fca43b272b49b18ab024218881ba134d1" "6e933f1668e124ec17fc7b6547f65ba760e06efb568a6c8091c600c67827e592" "7f6d4aebcc44c264a64e714c3d9d1e903284305fd7e319e7cb73345a9994f5ef" default)) - '(default-frame-alist '((font . "Fira Code-12") (width . 90) (height . 70))) + '(default-frame-alist + '((font . "Fira Code-12") + (width . 90) + (height . 64) + (vertical-scroll-bars))) '(delete-selection-mode nil) '(diary-file "~/Documents/diary/diary") '(fci-rule-color "#4C566A") From c4e33631ec02057261d9f903d5c2d242e6806247 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sun, 25 Apr 2021 14:31:42 +0200 Subject: [PATCH 32/51] Update eww bookmarks --- eww-bookmarks | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eww-bookmarks b/eww-bookmarks index 59c85fa0..d32feefb 100644 --- a/eww-bookmarks +++ b/eww-bookmarks @@ -1,5 +1,6 @@ ;; Auto-generated file; don't edit -((:url "https://mitpress.mit.edu/sites/default/files/sicp/full-text/book/book-Z-H-4.html#%_toc_start" :title "Structure and Interpretation of Computer Programs" :time "Fri Nov 27 09:15:13 2020") +((:url "https://nssdc.gsfc.nasa.gov/planetary/factsheet/" :title "Planetary Fact Sheet" :time "Sun Apr 25 09:56:57 2021") + (:url "https://mitpress.mit.edu/sites/default/files/sicp/full-text/book/book-Z-H-4.html#%_toc_start" :title "Structure and Interpretation of Computer Programs" :time "Fri Nov 27 09:15:13 2020") (:url "https://www.bell-labs.com/usr/dmr/www/chist.html" :title "Chistory" :time "Sat Nov 21 10:34:20 2020") (:url "https://courses.cs.vt.edu/~cs1104/TowerOfBabel/LISP/Lisp.outline.html" :title "A Brief Introduction to Lisp" :time "Tue Nov 17 08:36:17 2020") (:url "http://steve-yegge.blogspot.com/2008/01/emergency-elisp.html" :title "Stevey's Blog Rants: Emergency Elisp" :time "Mon Nov 16 22:03:54 2020") From 36452b3f5fb37beff7a6287570163cfa1e0f92af Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Mon, 26 Apr 2021 19:06:35 +0200 Subject: [PATCH 33/51] Add ob packages --- bundle/bundle--package.el | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index 1ae21d1d..aad4c1a7 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -75,13 +75,17 @@ There are two things you can do about this warning: (rust-mode . eglot-ensure) (go-mode . eglot-ensure))) -(use-package ob-rust) + (use-package go-mode :init (add-hook 'before-save-hook #'gofmt-before-save)) (use-package ob-go) +(use-package ob-http) +(use-package ob-rust) +(use-package ob-translate) +(use-package ob-typescript) (use-package web-mode :mode "\\.html?\\'" @@ -173,7 +177,9 @@ There are two things you can do about this warning: (C . t) (dot . t) (go . t) - (rust . t))))) + (rust . t) + (http . t) + (typescript . t))))) (use-package helpful :bind (("C-h f" . #'helpful-callable) From 2f61b38dd476d359080547a6dbb07b2811ec0f15 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Mon, 26 Apr 2021 19:08:17 +0200 Subject: [PATCH 34/51] Update win32 customfile --- bundle/custom_win32_EVG02667NB.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/custom_win32_EVG02667NB.el b/bundle/custom_win32_EVG02667NB.el index 1cfd321d..a95869fa 100644 --- a/bundle/custom_win32_EVG02667NB.el +++ b/bundle/custom_win32_EVG02667NB.el @@ -72,7 +72,7 @@ "c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar") '(org-refile-targets '((nil :maxlevel . 3))) '(package-selected-packages - '(ob-rust ob-go go-mode dracula-theme flucui-themes zenburn-theme spacemacs-theme helpful ac-emmet typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) + '(ob-translate ob-http ob-rust ob-go go-mode dracula-theme flucui-themes zenburn-theme spacemacs-theme helpful ac-emmet typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) '(pdf-view-midnight-colors '("#b2b2b2" . "#292b2e")) '(plantuml-default-exec-mode 'jar) '(plantuml-jar-path From 7a7dbc0fa73798ded00d5895bc3c8e77394d95d6 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Wed, 28 Apr 2021 18:08:50 +0200 Subject: [PATCH 35/51] Use package racket-mode --- bundle/bundle--package.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index aad4c1a7..851ee610 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -205,3 +205,5 @@ There are two things you can do about this warning: (use-package geiser :config (setq geiser-active-implementations '(guile))) + +(use-package racket-mode) From 2c20e1909f0ea9995c6789c50281ca4086474bb8 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Wed, 28 Apr 2021 18:09:40 +0200 Subject: [PATCH 36/51] Update win32 customfile --- bundle/custom_win32_EVG02667NB.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/custom_win32_EVG02667NB.el b/bundle/custom_win32_EVG02667NB.el index a95869fa..de13abaa 100644 --- a/bundle/custom_win32_EVG02667NB.el +++ b/bundle/custom_win32_EVG02667NB.el @@ -72,7 +72,7 @@ "c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar") '(org-refile-targets '((nil :maxlevel . 3))) '(package-selected-packages - '(ob-translate ob-http ob-rust ob-go go-mode dracula-theme flucui-themes zenburn-theme spacemacs-theme helpful ac-emmet typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) + '(racket-mode ob-typescript ob-translate ob-http ob-rust ob-go go-mode dracula-theme flucui-themes zenburn-theme spacemacs-theme helpful ac-emmet typescript-mode magit eglot websocket soft-morning-theme atom-dark-theme atom-one-dark-theme powershell plantuml-mode ox-reveal counsel all-the-icons-dired all-the-icons-gnus all-the-icons-ibuffer all-the-icons-ivy all-the-icons-ivy-rich nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser slime web-mode js2-mode yaml-mode olivetti use-package nord-theme nordless-theme toc-org ace-window htmlize ivy)) '(pdf-view-midnight-colors '("#b2b2b2" . "#292b2e")) '(plantuml-default-exec-mode 'jar) '(plantuml-jar-path From f21fe8e277bc1789e6cb2c08b51b57e048cef620 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Wed, 28 Apr 2021 21:57:22 +0200 Subject: [PATCH 37/51] Use nordic theme --- bundle/custom_gnu.el | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index 9b65ab61..e156d1ad 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -11,19 +11,31 @@ '(ansi-color-names-vector ["#212526" "#ff4b4b" "#b4fa70" "#fce94f" "#729fcf" "#e090d7" "#8cc4ff" "#eeeeec"]) '(backup-directory-alist '(("." . "~/.backup_filez"))) - '(custom-enabled-themes '(dracula)) + '(custom-enabled-themes '(nord)) '(custom-safe-themes - '("81c3de64d684e23455236abde277cda4b66509ef2c28f66e059aa925b8b12534" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "fe36e4da2ca97d9d706e569024caa996f8368044a8253dc645782e01cd68d884" "1fbd63256477789327fe429bd318fb90a8a42e5f2756dd1a94805fc810ae1b62" "7bc40a2e714b4872ad5cd07f992eb8e06ef5e01a8877488b9ffc3067463ca721" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "06bf0822aa77ea498bbd6038b59ad96fca43b272b49b18ab024218881ba134d1" "6e933f1668e124ec17fc7b6547f65ba760e06efb568a6c8091c600c67827e592" "7f6d4aebcc44c264a64e714c3d9d1e903284305fd7e319e7cb73345a9994f5ef" default)) - '(default-frame-alist - '((font . "Fira Code-12") - (width . 90) - (height . 64) - (vertical-scroll-bars))) + '("bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" "81c3de64d684e23455236abde277cda4b66509ef2c28f66e059aa925b8b12534" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "fe36e4da2ca97d9d706e569024caa996f8368044a8253dc645782e01cd68d884" "1fbd63256477789327fe429bd318fb90a8a42e5f2756dd1a94805fc810ae1b62" "7bc40a2e714b4872ad5cd07f992eb8e06ef5e01a8877488b9ffc3067463ca721" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "06bf0822aa77ea498bbd6038b59ad96fca43b272b49b18ab024218881ba134d1" "6e933f1668e124ec17fc7b6547f65ba760e06efb568a6c8091c600c67827e592" "7f6d4aebcc44c264a64e714c3d9d1e903284305fd7e319e7cb73345a9994f5ef" default)) + '(default-frame-alist '((font . "Fira Code-12") (width . 90) (height . 64))) '(delete-selection-mode nil) '(diary-file "~/Documents/diary/diary") '(fci-rule-color "#4C566A") '(gnus-init-file "~/.emacs.d/.gnus.el") '(hl-paren-colors '("#B9F" "#B8D" "#B7B" "#B69" "#B57" "#B45" "#B33" "#B11")) + '(hl-todo-keyword-faces + '(("TODO" . "#dc752f") + ("NEXT" . "#dc752f") + ("THEM" . "#2d9574") + ("PROG" . "#4f97d7") + ("OKAY" . "#4f97d7") + ("DONT" . "#f2241f") + ("FAIL" . "#f2241f") + ("DONE" . "#86dc2f") + ("NOTE" . "#b1951d") + ("KLUDGE" . "#b1951d") + ("HACK" . "#b1951d") + ("TEMP" . "#b1951d") + ("FIXME" . "#dc752f") + ("XXX+" . "#dc752f") + ("\\?\\?\\?+" . "#dc752f"))) '(initial-buffer-choice "~/Documents/journal/notes.org") '(initial-frame-alist '((fullscreen . maximized))) '(olivetti-body-width 82 nil nil "Customized with use-package olivetti") From 951bf4a7e7ff6a9252432ad98ef34b501f717d0d Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Thu, 29 Apr 2021 22:18:25 +0200 Subject: [PATCH 38/51] Optimize use of packages --- bundle/bundle--package.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index 851ee610..a1b5bf60 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -18,8 +18,13 @@ There are two things you can do about this warning: (when (< emacs-major-version 24) ;; For important compatibility libraries like cl-lib (add-to-list 'package-archives (cons "gnu" (concat proto "://elpa.gnu.org/packages/"))))) + (package-initialize) -(package-refresh-contents) +(unless package-archive-contents + (package-refresh-contents)) + +(unless (package-installed-p 'use-package) + (package-install 'use-package)) ;; USE-PACKAGE (require 'use-package) From 298ede7a017985c07743eccd9a56a738bf505b18 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Thu, 29 Apr 2021 22:18:39 +0200 Subject: [PATCH 39/51] Chaneg default theme to dracula --- bundle/custom_gnu.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index e156d1ad..861cc943 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -11,7 +11,7 @@ '(ansi-color-names-vector ["#212526" "#ff4b4b" "#b4fa70" "#fce94f" "#729fcf" "#e090d7" "#8cc4ff" "#eeeeec"]) '(backup-directory-alist '(("." . "~/.backup_filez"))) - '(custom-enabled-themes '(nord)) + '(custom-enabled-themes '(dracula)) '(custom-safe-themes '("bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" "81c3de64d684e23455236abde277cda4b66509ef2c28f66e059aa925b8b12534" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "fe36e4da2ca97d9d706e569024caa996f8368044a8253dc645782e01cd68d884" "1fbd63256477789327fe429bd318fb90a8a42e5f2756dd1a94805fc810ae1b62" "7bc40a2e714b4872ad5cd07f992eb8e06ef5e01a8877488b9ffc3067463ca721" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "06bf0822aa77ea498bbd6038b59ad96fca43b272b49b18ab024218881ba134d1" "6e933f1668e124ec17fc7b6547f65ba760e06efb568a6c8091c600c67827e592" "7f6d4aebcc44c264a64e714c3d9d1e903284305fd7e319e7cb73345a9994f5ef" default)) '(default-frame-alist '((font . "Fira Code-12") (width . 90) (height . 64))) From c170739ae9f7236c258a19cfc0ddaa655fe7cf3d Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Thu, 29 Apr 2021 22:30:49 +0200 Subject: [PATCH 40/51] Simplify package loading --- bundle/bundle--package.el | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index a1b5bf60..af5001f1 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -1,23 +1,9 @@ ;; PACKAGE (require 'package) - -(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos)) - (not (gnutls-available-p)))) - (proto (if no-ssl "http" "https"))) - (when no-ssl - (warn "\ -Your version of Emacs does not support SSL connections, -which is unsafe because it allows man-in-the-middle attacks. -There are two things you can do about this warning: -1. Install an Emacs version that does support SSL and be safe. -2. Remove this warning from your init file so you won't see it again.")) - ;; Comment/uncomment these two lines to enable/disable MELPA and MELPA Stable as desired - (add-to-list 'package-archives (cons "melpa" (concat proto "://melpa.org/packages/")) t) - ;;(add-to-list 'package-archives (cons "melpa-stable" (concat proto "://stable.melpa.org/packages/")) t) - (when (< emacs-major-version 24) - ;; For important compatibility libraries like cl-lib - (add-to-list 'package-archives (cons "gnu" (concat proto "://elpa.gnu.org/packages/"))))) +(setq package-archives '(("melpa" . "https://melpa.org/packages/") + ("org" . "https://orgmode.org/elpa/") + ("elpa" . "https://elpa.gnu.org/packages/"))) (package-initialize) (unless package-archive-contents From a5845f1557a3cc06f3daa0bb1141e9744e506153 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Thu, 29 Apr 2021 22:31:23 +0200 Subject: [PATCH 41/51] Set frame fringe to 10 --- bundle/custom_gnu.el | 1 + 1 file changed, 1 insertion(+) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index 861cc943..f2c20134 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -18,6 +18,7 @@ '(delete-selection-mode nil) '(diary-file "~/Documents/diary/diary") '(fci-rule-color "#4C566A") + '(fringe-mode 10 nil (fringe)) '(gnus-init-file "~/.emacs.d/.gnus.el") '(hl-paren-colors '("#B9F" "#B8D" "#B7B" "#B69" "#B57" "#B45" "#B33" "#B11")) '(hl-todo-keyword-faces From fc7b3614aff74715985a67a52bc549da4ab188ee Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Thu, 29 Apr 2021 22:36:12 +0200 Subject: [PATCH 42/51] Add doom-modeline --- bundle/custom_gnu.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index f2c20134..7f022129 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -45,7 +45,7 @@ '(org-plantuml-jar-path "~/.local/bin/plantuml.jar") '(package-enable-at-startup t) '(package-selected-packages - '(go-mode ob-rust rust-mode spacemacs-theme dracula-theme jinja2-mode ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) + '(doom-modeline go-mode ob-rust rust-mode spacemacs-theme dracula-theme jinja2-mode ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) '(scroll-bar-mode nil) '(tab-bar-mode nil) '(tetris-x-colors From fae69b54490e11b0c81ce13428a91d003905c896 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Thu, 29 Apr 2021 22:36:46 +0200 Subject: [PATCH 43/51] Remove fringe config --- bundle/custom_gnu.el | 1 - 1 file changed, 1 deletion(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index 7f022129..11ef3184 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -18,7 +18,6 @@ '(delete-selection-mode nil) '(diary-file "~/Documents/diary/diary") '(fci-rule-color "#4C566A") - '(fringe-mode 10 nil (fringe)) '(gnus-init-file "~/.emacs.d/.gnus.el") '(hl-paren-colors '("#B9F" "#B8D" "#B7B" "#B69" "#B57" "#B45" "#B33" "#B11")) '(hl-todo-keyword-faces From fa4171890f4e6d7568c76246a1f51e7ff971d83c Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Thu, 29 Apr 2021 22:36:54 +0200 Subject: [PATCH 44/51] Add package doom modeline --- bundle/bundle--package.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index af5001f1..470b5238 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -198,3 +198,7 @@ (setq geiser-active-implementations '(guile))) (use-package racket-mode) + +(use-package doom-modeline + :init (doom-modeline-mode 1) + :custom ((doom-modeline-height 15))) From c65045b7bcc4a1a904e590a0a7fb6e00cc703e56 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Thu, 29 Apr 2021 22:37:03 +0200 Subject: [PATCH 45/51] Set fringe mode to defaults --- bundle/bundle--defaults.el | 1 + 1 file changed, 1 insertion(+) diff --git a/bundle/bundle--defaults.el b/bundle/bundle--defaults.el index 5de3edfa..0a195870 100644 --- a/bundle/bundle--defaults.el +++ b/bundle/bundle--defaults.el @@ -9,6 +9,7 @@ (setq-default display-time-24hr-format t) (display-time-mode 1) (global-prettify-symbols-mode 1) +(set-fringe-mode 10) ;; Cursor and mouse (column-number-mode 1) From 813b626aef196fdce3c308b17fa3adff15faeb9e Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Fri, 30 Apr 2021 07:50:32 +0200 Subject: [PATCH 46/51] Add transparency funktion --- bundle/bundle--defaults.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bundle/bundle--defaults.el b/bundle/bundle--defaults.el index 5de3edfa..f6933407 100644 --- a/bundle/bundle--defaults.el +++ b/bundle/bundle--defaults.el @@ -85,3 +85,9 @@ minor-mode-alist mode-line-end-spaces "%-" ))) + + ;; Set transparency of emacs + (defun transparency (value) + "Sets the transparency of the frame window. 0=transparent/100=opaque" + (interactive "nTransparency Value 0 - 100 opaque:") + (set-frame-parameter (selected-frame) 'alpha value)) From c290741f064ce08e148708fedb2f241bd54da615 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Fri, 30 Apr 2021 08:07:47 +0200 Subject: [PATCH 47/51] Update height of doom modeline --- bundle/custom_gnu.el | 1 + 1 file changed, 1 insertion(+) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index 11ef3184..3c7b66cc 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -17,6 +17,7 @@ '(default-frame-alist '((font . "Fira Code-12") (width . 90) (height . 64))) '(delete-selection-mode nil) '(diary-file "~/Documents/diary/diary") + '(doom-modeline-height 32) '(fci-rule-color "#4C566A") '(gnus-init-file "~/.emacs.d/.gnus.el") '(hl-paren-colors '("#B9F" "#B8D" "#B7B" "#B69" "#B57" "#B45" "#B33" "#B11")) From db1fe66a28def3a8f228d46800fc01c35d8a9b44 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Fri, 30 Apr 2021 08:08:01 +0200 Subject: [PATCH 48/51] Update package --- bundle/bundle--package.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index 470b5238..e939ebf0 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -200,5 +200,4 @@ (use-package racket-mode) (use-package doom-modeline - :init (doom-modeline-mode 1) - :custom ((doom-modeline-height 15))) + :init (doom-modeline-mode 1)) From e5b6d564119abb50f2ccbfe4b360bf63f7509e08 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Mon, 3 May 2021 11:23:02 +0200 Subject: [PATCH 49/51] Update kitty conf --- OneDark.conf | 28 ++++++++++++++++++++++++ diff.conf | 19 ++++++++++++++++ dracula.conf | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++ kitty.conf | 4 ++-- 4 files changed, 111 insertions(+), 2 deletions(-) create mode 100644 OneDark.conf create mode 100644 diff.conf create mode 100644 dracula.conf diff --git a/OneDark.conf b/OneDark.conf new file mode 100644 index 00000000..5befa5c0 --- /dev/null +++ b/OneDark.conf @@ -0,0 +1,28 @@ +# Colors + +foreground #979eab +background #282c34 + +color0 #282c34 +color1 #e06c75 +color2 #98c379 +color3 #e5c07b +color4 #61afef +color5 #be5046 +color6 #56b6c2 +color7 #979eab +color8 #393e48 +color9 #d19a66 +color10 #56b6c2 +color11 #e5c07b +color12 #61afef +color13 #be5046 +color14 #56b6c2 +color15 #abb2bf + +# Tab Bar + +active_tab_foreground #282c34 +active_tab_background #979eab +inactive_tab_foreground #abb2bf +inactive_tab_background #282c34 diff --git a/diff.conf b/diff.conf new file mode 100644 index 00000000..5fec447e --- /dev/null +++ b/diff.conf @@ -0,0 +1,19 @@ +foreground #f8f8f2 +background #282a36 +title_fg #f8f8f2 +title_bg #282a36 +margin_bg #6272a4 +margin_fg #44475a +removed_bg #ff5555 +highlight_removed_bg #ff5555 +removed_margin_bg #ff5555 +added_bg #50fa7b +highlight_added_bg #50fa7b +added_margin_bg #50fa7b +filler_bg #44475a +hunk_margin_bg #44475a +hunk_bg #bd93f9 +search_bg #8be9fd +search_fg #282a36 +select_bg #f1fa8c +select_fg #282a36 diff --git a/dracula.conf b/dracula.conf new file mode 100644 index 00000000..8bee6358 --- /dev/null +++ b/dracula.conf @@ -0,0 +1,62 @@ +# https://draculatheme.com/kitty +# +# Installation instructions: +# +# cp dracula.conf ~/.config/kitty/ +# echo "include dracula.conf" >> ~/.config/kitty/kitty.conf +# +# Then reload kitty for the config to take affect. +# Alternatively copy paste below directly into kitty.conf + +foreground #f8f8f2 +background #282a36 +selection_foreground #ffffff +selection_background #44475a + +url_color #8be9fd + +# black +color0 #21222c +color8 #6272a4 + +# red +color1 #ff5555 +color9 #ff6e6e + +# green +color2 #50fa7b +color10 #69ff94 + +# yellow +color3 #f1fa8c +color11 #ffffa5 + +# blue +color4 #bd93f9 +color12 #d6acff + +# magenta +color5 #ff79c6 +color13 #ff92df + +# cyan +color6 #8be9fd +color14 #a4ffff + +# white +color7 #f8f8f2 +color15 #ffffff + +# Cursor colors +cursor #f8f8f2 +cursor_text_color background + +# Tab bar colors +active_tab_foreground #282a36 +active_tab_background #f8f8f2 +inactive_tab_foreground #282a36 +inactive_tab_background #6272a4 + +# Marks +mark1_foreground #282a36 +mark1_background #ff5555 diff --git a/kitty.conf b/kitty.conf index b4e79577..6317a15d 100644 --- a/kitty.conf +++ b/kitty.conf @@ -22,7 +22,7 @@ italic_font Fira Code Italic #: italic_font Operator Mono Book Italic #: bold_italic_font Operator Mono Medium Italic -font_size 12 +font_size 11 #: Font size (in pts) @@ -373,7 +373,7 @@ inactive_text_alpha 1.0 #: Fade the text in inactive windows by the specified amount (a number #: between zero and one, with zero being fully faded). -hide_window_decorations yes +hide_window_decorations no #: Hide the window decorations (title-bar and window borders). Whether #: this works and exactly what effect it has depends on the window From 34c7a087696815641291065714d84c0c5f14d05a Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Mon, 3 May 2021 11:23:34 +0200 Subject: [PATCH 50/51] Update packages and gnu specific customfile --- bundle/bundle--package.el | 2 ++ bundle/custom_gnu.el | 15 ++++++++------- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index e939ebf0..02680a68 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -201,3 +201,5 @@ (use-package doom-modeline :init (doom-modeline-mode 1)) + +(use-package doom-themes) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index 3c7b66cc..a59ada4e 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -11,13 +11,13 @@ '(ansi-color-names-vector ["#212526" "#ff4b4b" "#b4fa70" "#fce94f" "#729fcf" "#e090d7" "#8cc4ff" "#eeeeec"]) '(backup-directory-alist '(("." . "~/.backup_filez"))) - '(custom-enabled-themes '(dracula)) + '(custom-enabled-themes '(doom-nord)) '(custom-safe-themes - '("bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" "81c3de64d684e23455236abde277cda4b66509ef2c28f66e059aa925b8b12534" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "fe36e4da2ca97d9d706e569024caa996f8368044a8253dc645782e01cd68d884" "1fbd63256477789327fe429bd318fb90a8a42e5f2756dd1a94805fc810ae1b62" "7bc40a2e714b4872ad5cd07f992eb8e06ef5e01a8877488b9ffc3067463ca721" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "06bf0822aa77ea498bbd6038b59ad96fca43b272b49b18ab024218881ba134d1" "6e933f1668e124ec17fc7b6547f65ba760e06efb568a6c8091c600c67827e592" "7f6d4aebcc44c264a64e714c3d9d1e903284305fd7e319e7cb73345a9994f5ef" default)) - '(default-frame-alist '((font . "Fira Code-12") (width . 90) (height . 64))) + '("fce3524887a0994f8b9b047aef9cc4cc017c5a93a5fb1f84d300391fba313743" "bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" "81c3de64d684e23455236abde277cda4b66509ef2c28f66e059aa925b8b12534" "171d1ae90e46978eb9c342be6658d937a83aaa45997b1d7af7657546cae5985b" "9e39a8334e0e476157bfdb8e42e1cea43fad02c9ec7c0dbd5498cf02b9adeaf1" "fe36e4da2ca97d9d706e569024caa996f8368044a8253dc645782e01cd68d884" "1fbd63256477789327fe429bd318fb90a8a42e5f2756dd1a94805fc810ae1b62" "7bc40a2e714b4872ad5cd07f992eb8e06ef5e01a8877488b9ffc3067463ca721" "37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "06bf0822aa77ea498bbd6038b59ad96fca43b272b49b18ab024218881ba134d1" "6e933f1668e124ec17fc7b6547f65ba760e06efb568a6c8091c600c67827e592" "7f6d4aebcc44c264a64e714c3d9d1e903284305fd7e319e7cb73345a9994f5ef" default)) + '(default-frame-alist '((font . "Fira Code-11") (width . 90) (height . 64))) '(delete-selection-mode nil) '(diary-file "~/Documents/diary/diary") - '(doom-modeline-height 32) + '(doom-modeline-height 33) '(fci-rule-color "#4C566A") '(gnus-init-file "~/.emacs.d/.gnus.el") '(hl-paren-colors '("#B9F" "#B8D" "#B7B" "#B69" "#B57" "#B45" "#B33" "#B11")) @@ -38,14 +38,14 @@ ("XXX+" . "#dc752f") ("\\?\\?\\?+" . "#dc752f"))) '(initial-buffer-choice "~/Documents/journal/notes.org") - '(initial-frame-alist '((fullscreen . maximized))) + '(initial-frame-alist '((fullscreen . fullscreen))) '(olivetti-body-width 82 nil nil "Customized with use-package olivetti") '(org-modules '(ol-bbdb ol-docview ol-eww ol-gnus ol-info ol-irc ol-mhe ol-rmail org-tempo ol-w3m orgtbl-sqlinsert)) '(org-plantuml-jar-path "~/.local/bin/plantuml.jar") '(package-enable-at-startup t) '(package-selected-packages - '(doom-modeline go-mode ob-rust rust-mode spacemacs-theme dracula-theme jinja2-mode ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) + '(mu4e doom-themes doom-modeline go-mode ob-rust rust-mode spacemacs-theme dracula-theme jinja2-mode ac-emmet parse-csv csv atom-one-dark-theme arjen-grey-theme arc-dark-theme geiser all-the-icons-ivy all-the-icons-dired powershell forge request all-the-icons-ibuffer all-the-icons-ivy-rich all-the-icons-ivy-rich-mode all-the-icons-ibuffer-mode ox-reveal csv-mode gnuplot eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme toc-org ace-window htmlize ivy magit)) '(scroll-bar-mode nil) '(tab-bar-mode nil) '(tetris-x-colors @@ -55,7 +55,8 @@ [224 108 117] [152 195 121] [198 120 221] - [86 182 194]])) + [86 182 194]]) + '(user-mail-address "marcus.kammer@mailbox.org")) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. From a1120a38814d2029c49242bbe8e0bacab6fdb40b Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Mon, 3 May 2021 11:24:04 +0200 Subject: [PATCH 51/51] Add bundle file for mu4e --- bundle/bundle--mu4e.el | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bundle/bundle--mu4e.el diff --git a/bundle/bundle--mu4e.el b/bundle/bundle--mu4e.el new file mode 100644 index 00000000..4fa5f3cb --- /dev/null +++ b/bundle/bundle--mu4e.el @@ -0,0 +1,15 @@ +;; http://pragmaticemacs.com/emacs/master-your-inbox-with-mu4e-and-org-mode/ +(add-to-list 'load-path "/usr/share/emacs/site-lisp/mu4e/") +(require 'mu4e) +(setq mu4e-maildir (expand-file-name "~/Maildir")) +(setq mu4e-drafts-folder "/Drafts") +(setq mu4e-sent-folder "/Sent") +(setq mu4e-trash-folder "/Deleted") +(setq mu4e-get-mail-command "offlineimap") + +(require 'org-mu4e) + +(setq message-send-mail-function 'smtpmail-send-it) +(setq smtpmail-smtp-server "smtp.mailbox.org") +(setq smtpmail-smtp-service 465) +(setq smtpmail-auth-credentials (expand-file-name "~/.authinfo"))