summaryrefslogtreecommitdiffstats
path: root/nvim/Dockerfile
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2023-02-17 16:31:57 -0500
committerGitHub <noreply@github.com>2023-02-17 16:31:57 -0500
commit66e7a6c077345ddef82ed252228901e3032d7cef (patch)
tree3dbe70d9492e1a130010cbd22badfb11551ad259 /nvim/Dockerfile
parentd1c084ef19f03d397d80e7aa1d7ad89cc7351646 (diff)
downloaddots-66e7a6c077345ddef82ed252228901e3032d7cef.tar.gz
feat: move to lazy.nvim package manager and add first plugins (#178)
Closes #175 Closes #177 Closes #173 Closes #169 Closes #161 Closes #144 Closes #138 Fixes #136 Closes #137 Closes #131 Closes #117 Closes #130 Closes #115 Closes #86 Closes #105 Closes #70 Fixes #176 Fixes #174 Fixes #160 Fixes #158
Diffstat (limited to 'nvim/Dockerfile')
-rw-r--r--nvim/Dockerfile34
1 files changed, 0 insertions, 34 deletions
diff --git a/nvim/Dockerfile b/nvim/Dockerfile
deleted file mode 100644
index 5c303b4..0000000
--- a/nvim/Dockerfile
+++ /dev/null
@@ -1,34 +0,0 @@
-# Build neovim separately in the first stage
-FROM alpine:latest AS base
-
-RUN apk --no-cache add \
- autoconf \
- automake \
- build-base \
- cmake \
- ninja \
- coreutils \
- curl \
- gettext-tiny-dev \
- git \
- libtool \
- pkgconf \
- unzip
-
-# Build neovim (and use it as an example codebase
-RUN git clone https://github.com/neovim/neovim.git
-
-ARG VERSION=master
-RUN cd neovim && git checkout ${VERSION} && make CMAKE_BUILD_TYPE=RelWithDebInfo install
-
-# To support kickstart.nvim
-RUN apk --no-cache add \
- fd \
- ctags \
- ripgrep \
- git
-
-# Copy the kickstart.nvim init.lua
-COPY ./init.lua /root/.config/nvim/init.lua
-
-WORKDIR /neovim