diff --git a/config.org b/config.org index 7e67c6d..a8fe1d4 100644 --- a/config.org +++ b/config.org @@ -6,7 +6,7 @@ #+email: contact@tecosaur.net #+date: @@html:@@@@latex:\\\Large\bfseries@@ {{{modification-time(%Y-%m-%d, t)}}} @@latex:\\\normalsize\mdseries@@{{{modification-time(%H:%M, t)}}} @@latex:\acr{\lowercase{@@{{{timezone}}}@@latex:}}\iffalse@@, {{{git-rev}}}@@latex:\fi@@ #+macro: timezone (eval (substring (shell-command-to-string "date +%Z") 0 -1)) -#+macro: git-rev (eval (format "@@html:%1$s@@@@latex:\\href{https://git.tecosaur.net/tec/emacs-config/commit/%1$s}{\\normalsize\\texttt{%1$s}}@@" (substring (shell-command-to-string "git rev-parse --short HEAD") 0 -1))) +#+macro: git-rev (eval (format "@@html:%1$s@@@@latex:\\href{https://code.tecosaur.net/tec/emacs-config/commit/%1$s}{\\normalsize\\texttt{%1$s}}@@" (substring (shell-command-to-string "git rev-parse --short HEAD") 0 -1))) #+html_head: #+property: header-args:emacs-lisp #+property: header-args:elisp :results replace :exports code @@ -23,7 +23,7 @@ #+latex_engraved_theme: doom-one-light #+begin_export html - +;; Author: TEC ;; Maintainer: TEC ;; Created: %B %d, %Y ;; Modified: %B %d, %Y ;; Version: %Y.%m.%d -;; Homepage: https://git.tecosaur.net/tec/emacs-config +;; Homepage: https://code.tecosaur.net/tec/emacs-config ;; Package-Requires: ((emacs \"27.1\")) ;; ;; This file is not part of GNU Emacs. @@ -3700,7 +3700,7 @@ instance. Let's make that a bit more streamlined by introducing a quick-entry "default forge" option. #+begin_src emacs-lisp -(defvar +magit-default-forge-remote "gitea@git.tecosaur.net:tec/%s.git" +(defvar +magit-default-forge-remote "git@code.tecosaur.net:tec/%s.git" "Format string that fills out to a remote from the repo name. Set to nil to disable this functionality.") #+end_src @@ -7816,9 +7816,9 @@ correct package statement needed. (pp `(package! org :recipe (,@(if dev-key-p (list :host nil :repo "tec@git.savannah.gnu.org:/srv/git/emacs/org-mode.git" :local-repo "lisp/org" - :fork (list :host nil :repo "gitea@git.tecosaur.net:tec/org-mode.git" :branch "dev" :remote "tecosaur")) - (list :host nil :repo "https://git.tecosaur.net/mirrors/org-mode.git" :remote "mirror" - :fork (list :host nil :repo "https://git.tecosaur.net/tec/org-mode.git" :branch "dev" :remote "tecosaur"))) + :fork (list :host nil :repo "git@code.tecosaur.net:tec/org-mode.git" :branch "dev" :remote "tecosaur")) + (list :host nil :repo "https://code.tecosaur.net/mirrors/org-mode.git" :remote "mirror" + :fork (list :host nil :repo "https://code.tecosaur.net/tec/org-mode.git" :branch "dev" :remote "tecosaur"))) ,@recipe-common) :pin nil))) (untabify (point-min) (point-max))