Merge branch 'main' of git.sr.ht:~marcuskammer/emacs.d
This commit is contained in:
commit
e50b09e113
3 changed files with 16 additions and 21 deletions
|
@ -94,9 +94,5 @@
|
|||
eshell-mode-hook))
|
||||
(add-hook mode (lambda () (display-line-numbers-mode 0))))
|
||||
|
||||
;; Document encoding
|
||||
(set-language-environment "UTF-8")
|
||||
(set-default-coding-systems 'utf-8)
|
||||
|
||||
;; Writing docs helpers
|
||||
(electric-quote-mode t)
|
||||
|
|
|
@ -109,7 +109,13 @@
|
|||
org-agenda-inhibit-startup nil
|
||||
org-agenda-span 14
|
||||
org-agenda-start-on-weekday nil
|
||||
org-agenda-include-diary t)
|
||||
org-agenda-include-diary t
|
||||
org-refile-targets '((nil :maxlevel . 3)))
|
||||
|
||||
(setq org-clock-out-remove-zero-time-clocks t
|
||||
org-clock-persist t
|
||||
org-clock-rounding-minutes 30
|
||||
org-time-stamp-rounding-minutes '(15 15))
|
||||
|
||||
(setq org-html-doctype "html5"
|
||||
org-html-html5-fancy t
|
||||
|
@ -121,10 +127,9 @@
|
|||
|
||||
(setq org-babel-shell-names (quote ("sh" "bash" "csh" "ash" "dash" "ksh" "mksh" "posh"))
|
||||
org-adapt-indentation t
|
||||
org-clock-persist t
|
||||
org-confirm-babel-evaluate nil
|
||||
org-log-done (quote time)
|
||||
org-startup-folded nil
|
||||
org-startup-folded t
|
||||
org-startup-truncated nil
|
||||
org-global-properties (quote (("EFFORT_ALL" . "1:00 2:00 3:00 5:00 8:00 13:00")))
|
||||
org-todo-keywords (quote ((sequence "OPEN" "TODO" "DOING" "|" "DONE")))
|
||||
|
@ -218,3 +223,8 @@
|
|||
|
||||
(use-package rainbow-delimiters
|
||||
:hook (prog-mode . rainbow-delimiters-mode))
|
||||
|
||||
(use-package flyspell
|
||||
:config
|
||||
(add-hook 'text-mode-hook #'flyspell-mode)
|
||||
(add-hook 'prog-mode-hook #'flyspell-prog-mode))
|
||||
|
|
|
@ -51,32 +51,21 @@
|
|||
'(ispell-program-name "~/AppData/Local/Programs/msys64/mingw64/bin/aspell.exe" t)
|
||||
'(ls-lisp-dirs-first t)
|
||||
'(nov-text-width nil)
|
||||
'(nov-unzip-program
|
||||
"c:/Users/Marcus.Kammer/AppData/Local/Programs/msys64/usr/bin/unzip.exe")
|
||||
'(nov-unzip-program "~/AppData/Local/Programs/msys64/usr/bin/unzip.exe")
|
||||
'(nov-variable-pitch nil)
|
||||
'(olivetti-body-width 73 nil nil "Customized with use-package olivetti")
|
||||
'(olivetti-lighter " Olv")
|
||||
'(olivetti-minimum-body-width 80)
|
||||
'(olivetti-mode-hook nil t)
|
||||
'(org-agenda-files
|
||||
'("d:/UserData/marcus.kammer/OneDrive - Siemens AG/documents/Journal/"))
|
||||
'(org-clock-out-remove-zero-time-clocks t)
|
||||
'(org-clock-rounding-minutes 30)
|
||||
'(org-default-notes-file "notes.org")
|
||||
'(org-directory
|
||||
"d:/UserData/marcus.kammer/OneDrive - Siemens AG/documents/Journal/")
|
||||
'(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-plantuml-jar-path
|
||||
"c:/Users/Marcus.Kammer/AppData/Local/Programs/plantuml/plantuml.jar")
|
||||
'(org-refile-targets '((nil :maxlevel . 3)))
|
||||
'(org-time-stamp-rounding-minutes '(15 15))
|
||||
'(org-plantuml-jar-path "~/AppData/Local/Programs/plantuml/plantuml.jar")
|
||||
'(package-selected-packages
|
||||
'(all-the-icons-ivy-rich ivy-rich geiser-racket rainbow-delimiters doom-themes 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 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 nov gnu-elpa-keyring-update slime-company elpy color-theme-sanityinc-tomorrow markdown-preview-mode request rust-mode sphinx-frontend sphinx-mode geiser 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")
|
||||
'(plantuml-jar-path "~/AppData/Local/Programs/plantuml/plantuml.jar")
|
||||
'(python-indent-guess-indent-offset nil)
|
||||
'(python-shell-interpreter "ipython")
|
||||
'(python-shell-interpreter-args "--simple-prompt -i")
|
||||
|
|
Loading…
Add table
Reference in a new issue