mirror of
https://github.com/emacscollective/emacs.g.git
synced 2025-07-26 03:14:20 -04:00
Assimilate auto-compile and dependencies
Assimilate auto-compile 1.3.1 Assimilate packed 0.5.3
This commit is contained in:
parent
3cbf0e2061
commit
5b6cc0c12f
6
.gitmodules
vendored
6
.gitmodules
vendored
@ -1,3 +1,6 @@
|
|||||||
|
[submodule "auto-compile"]
|
||||||
|
path = lib/auto-compile
|
||||||
|
url = git@github.com:tarsius/auto-compile.git
|
||||||
[submodule "borg"]
|
[submodule "borg"]
|
||||||
path = lib/borg
|
path = lib/borg
|
||||||
url = git@gitlab.com:tarsius/borg.git
|
url = git@gitlab.com:tarsius/borg.git
|
||||||
@ -22,6 +25,9 @@
|
|||||||
path = lib/magit
|
path = lib/magit
|
||||||
url = git@github.com:magit/magit.git
|
url = git@github.com:magit/magit.git
|
||||||
info-path = Documentation
|
info-path = Documentation
|
||||||
|
[submodule "packed"]
|
||||||
|
path = lib/packed
|
||||||
|
url = git@github.com:tarsius/packed.git
|
||||||
[submodule "use-package"]
|
[submodule "use-package"]
|
||||||
path = lib/use-package
|
path = lib/use-package
|
||||||
url = git@github.com:jwiegley/use-package.git
|
url = git@github.com:jwiegley/use-package.git
|
||||||
|
13
init.el
13
init.el
@ -26,6 +26,19 @@
|
|||||||
(require 'use-package)
|
(require 'use-package)
|
||||||
(setq use-package-verbose t))
|
(setq use-package-verbose t))
|
||||||
|
|
||||||
|
(use-package auto-compile
|
||||||
|
:demand t
|
||||||
|
:config
|
||||||
|
(auto-compile-on-load-mode)
|
||||||
|
(auto-compile-on-save-mode)
|
||||||
|
(setq auto-compile-display-buffer nil)
|
||||||
|
(setq auto-compile-mode-line-counter t)
|
||||||
|
(setq auto-compile-source-recreate-deletes-dest t)
|
||||||
|
(setq auto-compile-toggle-deletes-nonlib-dest t)
|
||||||
|
(setq auto-compile-update-autoloads t)
|
||||||
|
(add-hook 'auto-compile-inhibit-compile-hook
|
||||||
|
'auto-compile-inhibit-compile-detached-git-head))
|
||||||
|
|
||||||
(use-package epkg
|
(use-package epkg
|
||||||
:defer t
|
:defer t
|
||||||
:init (setq epkg-repository
|
:init (setq epkg-repository
|
||||||
|
1
lib/auto-compile
Submodule
1
lib/auto-compile
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 61c6bec0ab4e44fe68628a5ee0c8b3b7f50c001f
|
1
lib/packed
Submodule
1
lib/packed
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 4b278931c3694c467e5aaa0246956227806065a0
|
Loading…
x
Reference in New Issue
Block a user