The scientific-emacs a container-based in Debian:Focal version with emacs 26, and a light version of TeXlive.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
697 B

  1. # Readme
  2. To get the ip address
  3. '''
  4. open -a xquartz
  5. ip=$(ifconfig en0 | grep inet | awk '$1=="inet" {print $2}')
  6. xhost + $ip
  7. '''
  8. To run the container
  9. '''
  10. docker run --rm -it -v`pwd`/emacs-config:/root \
  11. -e DISPLAY=$ip:0 \
  12. -v /tmp/.X11-unix:/tmp/.X11-unix \
  13. gmarxcc/scientific-emacs:0.1
  14. '''
  15. the 'emacs-config' folder contains the '.emacs' configuration file
  16. To install:
  17. - aspell
  18. - curl
  19. - wget
  20. - git
  21. - zsh
  22. ## After first run the container
  23. Upgrade texlive to be able to install new packages by :
  24. '''
  25. apt-get upgrade texlive-base
  26. '''
  27. Then, init the user with 'tlmgr init-usertree'. After that you can install new packages using 'tlmgr install package'.