commit f89458b0565f9bab6747561073dd26eda4aafc9f Author: haxala1r Date: Mon Jun 9 15:54:13 2025 +0300 Initial diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5f5b7fa --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM debian + +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt update && \ + apt install -y emacs clang clangd && \ + apt clean all + + +ENTRYPOINT ["/bin/emacs" "-nw"] diff --git a/Dockerfile~ b/Dockerfile~ new file mode 100644 index 0000000..d5c5e6a --- /dev/null +++ b/Dockerfile~ @@ -0,0 +1,8 @@ +FROM ubuntu + +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt update && + apt install -y emacs clang clangd + + diff --git a/emacs-init b/emacs-init new file mode 100644 index 0000000..e983b6a --- /dev/null +++ b/emacs-init @@ -0,0 +1,8 @@ +;; Require Emacs' package functionality +(require 'package) + +;; Add the Melpa repository to the list of package sources +(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t) + +;; Initialise the package system. +(package-initialize)