mirror of
https://github.com/emacscollective/emacs.g.git
synced 2025-11-23 11:41:18 -05:00
Merge branch 'master' into layer/all
This commit is contained in:
7
.gitmodules
vendored
7
.gitmodules
vendored
@@ -9,7 +9,7 @@
|
|||||||
url = git@github.com:emacscollective/borg.git
|
url = git@github.com:emacscollective/borg.git
|
||||||
[submodule "closql"]
|
[submodule "closql"]
|
||||||
path = lib/closql
|
path = lib/closql
|
||||||
url = git@github.com:emacscollective/closql.git
|
url = git@github.com:magit/closql.git
|
||||||
[submodule "compat"]
|
[submodule "compat"]
|
||||||
path = lib/compat
|
path = lib/compat
|
||||||
url = https://git.sr.ht/~pkal/compat
|
url = https://git.sr.ht/~pkal/compat
|
||||||
@@ -33,10 +33,7 @@
|
|||||||
[submodule "emacsql"]
|
[submodule "emacsql"]
|
||||||
no-byte-compile = emacsql-pg.el
|
no-byte-compile = emacsql-pg.el
|
||||||
path = lib/emacsql
|
path = lib/emacsql
|
||||||
url = git@github.com:skeeto/emacsql.git
|
url = git@github.com:magit/emacsql.git
|
||||||
[submodule "emacsql-sqlite-builtin"]
|
|
||||||
path = lib/emacsql-sqlite-builtin
|
|
||||||
url = git@github.com:emacscollective/emacsql-sqlite-builtin.git
|
|
||||||
[submodule "epkg"]
|
[submodule "epkg"]
|
||||||
path = lib/epkg
|
path = lib/epkg
|
||||||
url = git@github.com:emacscollective/epkg.git
|
url = git@github.com:emacscollective/epkg.git
|
||||||
|
|||||||
15
Makefile
15
Makefile
@@ -1,17 +1,28 @@
|
|||||||
-include lib/borg/borg.mk
|
-include lib/borg/borg.mk
|
||||||
|
|
||||||
|
ifndef BORG_DIR
|
||||||
|
|
||||||
|
help helpall::
|
||||||
|
$(info )
|
||||||
|
$(info Bootstrapping)
|
||||||
|
$(info -------------)
|
||||||
|
$(info make bootstrap-borg = make borg and make targets available)
|
||||||
|
@printf "\n"
|
||||||
|
|
||||||
bootstrap-borg:
|
bootstrap-borg:
|
||||||
@git submodule--helper clone --name borg --path lib/borg \
|
@git submodule--helper clone --name borg --path lib/borg \
|
||||||
--url git@github.com:emacscollective/borg.git
|
--url git@github.com:emacscollective/borg.git
|
||||||
@cd lib/borg; git symbolic-ref HEAD refs/heads/master
|
@cd lib/borg; git symbolic-ref HEAD refs/heads/master
|
||||||
@cd lib/borg; git reset --hard HEAD
|
@cd lib/borg; git reset --hard HEAD
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
helpall::
|
helpall::
|
||||||
$(info Test and fix targets)
|
$(info Test and fix targets)
|
||||||
$(info --------------------)
|
$(info --------------------)
|
||||||
$(info make codespell-dry = run codespell, dry run)
|
$(info make codespell-dry = run codespell, dry run)
|
||||||
$(info make codespell-fix = run codespell, write fixes)
|
$(info make codespell-fix = run codespell, write fixes)
|
||||||
$(info )
|
@printf "\n"
|
||||||
|
|
||||||
codespell-dry:
|
codespell-dry:
|
||||||
@cd lib; codespell \
|
@cd lib; codespell \
|
||||||
@@ -26,3 +37,5 @@ codespell-fix:
|
|||||||
--exclude-file ~/.emacs.d/etc/codespell/ignore-lines \
|
--exclude-file ~/.emacs.d/etc/codespell/ignore-lines \
|
||||||
--skip $(shell sed '/^\s*$$/d;/^\s*#.*$$/d;s/#.*//;s/\s//g' \
|
--skip $(shell sed '/^\s*$$/d;/^\s*#.*$$/d;s/#.*//;s/\s//g' \
|
||||||
~/.emacs.d/etc/codespell/ignore-files | tr "\\n" ",")
|
~/.emacs.d/etc/codespell/ignore-files | tr "\\n" ",")
|
||||||
|
|
||||||
|
endif
|
||||||
|
|||||||
4
init.el
4
init.el
@@ -82,7 +82,7 @@
|
|||||||
(add-hook 'before-save-hook 'copyright-update))
|
(add-hook 'before-save-hook 'copyright-update))
|
||||||
|
|
||||||
(use-package dash
|
(use-package dash
|
||||||
:config (global-dash-fontify-mode 1))
|
:config (global-dash-fontify-mode))
|
||||||
|
|
||||||
(use-package diff-hl
|
(use-package diff-hl
|
||||||
:config
|
:config
|
||||||
@@ -247,7 +247,7 @@
|
|||||||
|
|
||||||
(use-package recentf
|
(use-package recentf
|
||||||
:demand t
|
:demand t
|
||||||
:config (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:"))
|
:config (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?x?:"))
|
||||||
|
|
||||||
(use-package savehist
|
(use-package savehist
|
||||||
:config (savehist-mode))
|
:config (savehist-mode))
|
||||||
|
|||||||
Submodule lib/auto-compile updated: b204e2f85a...9caa1aeaa9
2
lib/borg
2
lib/borg
Submodule lib/borg updated: 3cea55cd44...032ddf3379
Submodule lib/closql updated: 87d2edae8b...820e95170a
Submodule lib/compat updated: 8c51417661...e827a9f3e2
2
lib/dash
2
lib/dash
Submodule lib/dash updated: 0ac1ecf6b5...3df46d7d9f
Submodule lib/diff-hl updated: e84209e959...68fb280b30
Submodule lib/emacsql updated: 373975cbcc...e318a6c8f6
Submodule lib/emacsql-sqlite-builtin deleted from 3e820c66fd
2
lib/epkg
2
lib/epkg
Submodule lib/epkg updated: 4524f9a8f1...dbb2d6556b
Submodule lib/git-modes updated: eca3bb42ea...4f9ad30f01
Submodule lib/magit updated: dbb2e9c8de...2a5815fee1
Submodule lib/packed updated: 6a427d9da7...c079fc64f4
Submodule lib/transient updated: a583d2b2f5...ad953cc3c5
Submodule lib/treepy updated: 3ac940e97f...de1a2ddc3f
Submodule lib/use-package updated: a7422fb8ab...0be480ea77
Submodule lib/with-editor updated: cfcbc2731e...4ca225bf1c
Reference in New Issue
Block a user