File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,15 @@ RUN npm install -g eslint
45
45
RUN npm install -g eslint-config-airbnb-base
46
46
RUN npm install -g eslint-plugin-import
47
47
48
- RUN add-apt-repository ppa:jonathonf/vim -y
49
- RUN apt update
50
- RUN apt install vim -y
48
+ RUN add-apt-repository ppa:jonathonf/vim -y \
49
+ && apt update \
50
+ && apt install vim -y
51
51
52
52
COPY dotfiles/.vimrc /root/.vimrc
53
+ COPY dotfiles/.gitconfig /root/.gitconfig
53
54
COPY dotfiles/.bash_aliases /root/.bash_aliases
54
55
55
- RUN rm -r /root/.vim || true
56
- RUN curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
57
- https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
58
- RUN vim +PlugInstall +qall
56
+ RUN rm -r /root/.vim || true \
57
+ && curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
58
+ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim \
59
+ && vim +PlugInstall +qall
You can’t perform that action at this time.
0 commit comments