Config: add hs-minor-mode support

This commit is contained in:
User
2026-05-10 17:40:10 +08:00
parent 6b58f2928e
commit fddfe9859d
6 changed files with 32 additions and 12 deletions

View File

@@ -97,6 +97,14 @@
;; 移动到垃圾桶
(setq delete-by-moving-to-trash t)
;; 让xref用rg
(setq xref-search-program
(cond
((or (executable-find "ripgrep")
(executable-find "rg"))
'ripgrep)
(t 'grep)))
(provide 'init-startup)
;;; init-startup.el ends here