Files
docs/build.el
Andros Fenollosa 9ad0814822 Use one.el fork with table support
- Simplified onerc.el by removing table workaround
- Updated build.el to load fork from local path
- Added one.el fork as submodule with table support
2025-12-27 10:32:21 +01:00

15 lines
412 B
EmacsLisp

(progn
(require 'package)
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
(package-refresh-contents)
;; Install one.el dependencies
(package-install 'jack)
(package-install 'htmlize)
;; Add fork to load-path and load it
(add-to-list 'load-path "/usr/src/app/one.el")
(require 'one)
(find-file "/usr/src/app/one.org")
(one-build))