Compare commits

..

No commits in common. "42056faf55274ddb3fc8117c5df922dfdd9c1198" and "f4477217ec98e4b127df1e018dd68b5dfbdec741" have entirely different histories.

2 changed files with 8 additions and 18 deletions

View File

@ -1,7 +1,7 @@
#+TITLE: Emacs configuration file #+TITLE: Emacs configuration file
#+AUTHOR: Lars Tveito #+AUTHOR: Lars Tveito
#+PROPERTY: header-args :tangle yes #+PROPERTY: header-args :tangle yes
#+STARTUP: content #+STARTUP: overview
* About * About
@ -393,7 +393,7 @@
(let ((theme (intern (concat "nano-" (symbol-name variant))))) (let ((theme (intern (concat "nano-" (symbol-name variant)))))
(load-theme theme t))) (load-theme theme t)))
(load-nano-theme (or (bound-and-true-p ns-system-appearance) 'light)) (load-nano-theme (if (boundp 'ns-system-appearance) ns-system-appearance 'light))
#+end_src #+end_src
@ -547,9 +547,7 @@
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package center-content-mode (use-package center-content-mode
:vc (center-content-mode :ensure nil)
:url "https://git.larstvei.no/larstvei/center-content-mode.git"
:branch "main"))
#+end_src #+end_src
@ -756,7 +754,7 @@
:config :config
(setq corfu-cycle t (setq corfu-cycle t
corfu-auto t corfu-auto t
corfu-auto-delay 1 corfu-auto-delay 0.1
corfu-auto-prefix 2 corfu-auto-prefix 2
corfu-popupinfo-delay 0.5)) corfu-popupinfo-delay 0.5))
@ -904,20 +902,12 @@
:defer t :defer t
:config :config
(setq org-adapt-indentation t (setq org-adapt-indentation t
org-hide-leading-stars nil org-hide-leading-stars t
org-hide-emphasis-markers t org-hide-emphasis-markers t
org-pretty-entities t org-pretty-entities t
org-src-fontify-natively t org-src-fontify-natively t
org-startup-folded t org-startup-folded t
org-edit-src-content-indentation 0) org-edit-src-content-indentation 0))
(custom-set-faces
'(org-document-title ((t (:inherit outline-1 :height 1.75))))
'(org-level-1 ((t (:inherit outline-1 :height 1.5))))
'(org-level-2 ((t (:inherit outline-2 :height 1.25))))
'(org-level-3 ((t (:inherit outline-3 :height 1.125))))
'(org-level-4 ((t (:inherit outline-4 :height 1.0625))))
'(org-level-5 ((t (:inherit outline-5 :height 1.03125))))))
#+end_src #+end_src
@ -1040,8 +1030,7 @@
:after org :after org
:hook (org-mode . org-modern-mode) :hook (org-mode . org-modern-mode)
:config :config
(setq org-modern-block-fringe nil (setq org-modern-block-fringe nil))
org-modern-star 'replace))
#+end_src #+end_src

@ -0,0 +1 @@
Subproject commit 6527a1c8148c69b730d8d5517ee48fede5720f21