Compare commits

...

2 Commits

Author SHA1 Message Date
3139541bb9
Ignore case when sorting
This feels more natural … but might break things.  Embrace for impact!
2025-08-25 16:38:49 +02:00
25d7a72fd6
Add missing generic git-link-homepage handler for Gitea URLs 2025-08-25 16:37:36 +02:00

View File

@ -154,7 +154,8 @@
help-enable-symbol-autoload t help-enable-symbol-autoload t
describe-bindings-outline t describe-bindings-outline t
redisplay-skip-fontification-on-input t redisplay-skip-fontification-on-input t
async-shell-command-buffer 'new-buffer) async-shell-command-buffer 'new-buffer
sort-fold-case t)
(setq byte-compile-warnings '(not docstrings)) ; yields warning when used with setopt (setq byte-compile-warnings '(not docstrings)) ; yields warning when used with setopt
@ -1611,7 +1612,8 @@ Note that this workaround is incomplete, as explained in this comment."
:config (progn :config (progn
;; Add default generic Gitea handler for URLs containing “gitea”. ;; Add default generic Gitea handler for URLs containing “gitea”.
(add-to-list 'git-link-remote-alist '("gitea" git-link-gitea) t) (add-to-list 'git-link-remote-alist '("gitea" git-link-gitea) t)
(add-to-list 'git-link-commit-remote-alist '("gitea" git-link-commit-gitea) t))) (add-to-list 'git-link-commit-remote-alist '("gitea" git-link-commit-gitea) t)
(add-to-list 'git-link-homepage-remote-alist '("gitea" git-link-homepage-github) t)))
(use-package highlight-indentation (use-package highlight-indentation
:commands highlight-indentation-mode) :commands highlight-indentation-mode)