astrolisp is a set of tools and configurations for emacs intended for use with astrogeology software such as ISIS3 and ALE; these are primarily for astrogeology programming and research usage focused in the USGS software ecosystem.
To install, currently all you have to do is clone this locally (best practice
would be to store it in \~/.emacs.d/
), after this just add:
(load-file "~/.emacs.d/astrolisp/astrolisp.el")
to your init.el configuration. For further speed optimizations it is possible to byte compile this file for faster native runtime speeds; to do this run:
(byte-compile-file "~/.emacs.d/astrolisp/astrolisp.el")
and change the earlier load-file
call to:
(load-file "~/.emacs.d/astrolisp/astrolisp.elc")
Feel free to make a PR with any changes you find would be useful if you happen to also use this package or find extensible purposes for it.