mirror of
https://github.com/amix/vimrc
synced 2025-02-28 14:12:51 +08:00
9 lines
170 B
Docker
9 lines
170 B
Docker
# vi: ft=dockerfile
|
|
FROM ubuntu:latest
|
|
|
|
RUN apt-get update && apt-get install -yf neovim
|
|
|
|
RUN mkdir -p /root/.config/nvim
|
|
|
|
COPY test.init.vim /root/.config/nvim/init.vim
|