├── .github └── workflows │ └── check.yml ├── .gitignore ├── LICENSE ├── README.org ├── tempel-collection.el └── templates ├── css-base.eld ├── emacs-lisp.eld ├── eshell.eld ├── fundamental.eld ├── go.eld ├── html.eld ├── java.eld ├── js-and-typescript-ts-base.eld ├── latex.eld ├── lisp.eld ├── markdown.eld ├── nix.eld ├── org.eld ├── prog.eld ├── python-base.eld ├── rst.eld ├── ruby-base.eld ├── rust.eld ├── sh-base.eld ├── sql.eld ├── texinfo.eld └── text.eld /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/README.org -------------------------------------------------------------------------------- /tempel-collection.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/tempel-collection.el -------------------------------------------------------------------------------- /templates/css-base.eld: -------------------------------------------------------------------------------- 1 | css-base-mode 2 | -------------------------------------------------------------------------------- /templates/emacs-lisp.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/emacs-lisp.eld -------------------------------------------------------------------------------- /templates/eshell.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/eshell.eld -------------------------------------------------------------------------------- /templates/fundamental.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/fundamental.eld -------------------------------------------------------------------------------- /templates/go.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/go.eld -------------------------------------------------------------------------------- /templates/html.eld: -------------------------------------------------------------------------------- 1 | html-mode 2 | -------------------------------------------------------------------------------- /templates/java.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/java.eld -------------------------------------------------------------------------------- /templates/js-and-typescript-ts-base.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/js-and-typescript-ts-base.eld -------------------------------------------------------------------------------- /templates/latex.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/latex.eld -------------------------------------------------------------------------------- /templates/lisp.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/lisp.eld -------------------------------------------------------------------------------- /templates/markdown.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/markdown.eld -------------------------------------------------------------------------------- /templates/nix.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/nix.eld -------------------------------------------------------------------------------- /templates/org.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/org.eld -------------------------------------------------------------------------------- /templates/prog.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/prog.eld -------------------------------------------------------------------------------- /templates/python-base.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/python-base.eld -------------------------------------------------------------------------------- /templates/rst.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/rst.eld -------------------------------------------------------------------------------- /templates/ruby-base.eld: -------------------------------------------------------------------------------- 1 | ruby-base-mode 2 | -------------------------------------------------------------------------------- /templates/rust.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/rust.eld -------------------------------------------------------------------------------- /templates/sh-base.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/sh-base.eld -------------------------------------------------------------------------------- /templates/sql.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/sql.eld -------------------------------------------------------------------------------- /templates/texinfo.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/texinfo.eld -------------------------------------------------------------------------------- /templates/text.eld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crandel/tempel-collection/HEAD/templates/text.eld --------------------------------------------------------------------------------