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.
 
 
 
 
 
 

34 lines
987 B

FROM ubuntu:20.04
RUN apt-get update && \
apt-get -y dist-upgrade && \
apt-get install -y \
apt-utils \
build-essential \
wget \
curl \
git \
neovim \
vim && \
apt-get clean
RUN curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
RUN curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
RUN curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
# install rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
RUN git clone https://github.com/arnaucube/configs.git && \
cp configs/.vimrc ~/ && \
cp configs/vimconfigbase.vim ~/ && \
mkdir ~/.config && \
mkdir ~/.config/nvim && \
cp configs/init.vim ~/.config/nvim/
WORKDIR /root
ENTRYPOINT /bin/sh