bir.el 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ;;; bir.el --- Incremental Reading for Emacs -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2021 Charlie Gordon
  3. ;; Author: Charlie Gordon <char1iegordon@protonmail.com>
  4. ;; Keywords: multimedia, convenience
  5. ;; This program is free software; you can redistribute it and/or modify
  6. ;; it under the terms of the GNU General Public License as published by
  7. ;; the Free Software Foundation, either version 3 of the License, or
  8. ;; (at your option) any later version.
  9. ;; This program is distributed in the hope that it will be useful,
  10. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ;; GNU General Public License for more details.
  13. ;; You should have received a copy of the GNU General Public License
  14. ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
  15. ;;; Commentary:
  16. ;;
  17. ;;; Code:
  18. (require 'bir-core)
  19. (require 'bir-extract)
  20. (require 'bir-split)
  21. (require 'bir-mercy)
  22. (require 'bir-import)
  23. (provide 'bir)
  24. ;;; bir.el ends here