├── .github └── workflows │ └── test.yml ├── .gitignore ├── Makefile ├── README.md ├── benchmark-init-modes.el ├── benchmark-init.el └── default.mk /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dholm/benchmark-init-el/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | benchmark-init-loaddefs.el 2 | *.elc 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dholm/benchmark-init-el/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dholm/benchmark-init-el/HEAD/README.md -------------------------------------------------------------------------------- /benchmark-init-modes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dholm/benchmark-init-el/HEAD/benchmark-init-modes.el -------------------------------------------------------------------------------- /benchmark-init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dholm/benchmark-init-el/HEAD/benchmark-init.el -------------------------------------------------------------------------------- /default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dholm/benchmark-init-el/HEAD/default.mk --------------------------------------------------------------------------------