Initial
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@ -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"]
|
8
Dockerfile~
Normal file
8
Dockerfile~
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
FROM ubuntu
|
||||||
|
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
RUN apt update &&
|
||||||
|
apt install -y emacs clang clangd
|
||||||
|
|
||||||
|
|
8
emacs-init
Normal file
8
emacs-init
Normal file
@ -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)
|
Reference in New Issue
Block a user