diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-05-31 10:31:49 -0600 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-05-31 10:31:49 -0600 |
commit | 517883fcdd98470965ad29e6b8dd4c7c87265afb (patch) | |
tree | f3bdef0b439acaca37223ab9bba24c775cca5fba | |
parent | a515e5413b34f7eea3bcb842cc9c37ded356eadb (diff) |
Supress neovim plugin install
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -85,8 +85,8 @@ CMD ["/bin/bash"] # Add nvim config. Put this last since it changes often ADD nvim /root/.config/nvim # Install neovim Modules -RUN nvim +PlugInstall +qall -RUN nvim +UpdateRemotePlugins +qall +RUN nvim -i NONE -c PlugInstall -c quitall > /dev/null 2>&1 +RUN nvim -i NONE -c UpdateRemotePlugins -c quitall > /dev/null 2>&1 # Add flake8 config, don't trigger a long build process ADD flake8 /root/.flake8 # Add local vim-options, can override the one inside |