Docker image: haron/vim
Dockerfile with vim installed. Additionally pathogen plugin and powerline fonts are installed.
Command to run vim container:
sudo docker run -i -t --name my-vim -v ~/:/home/dev/src haron/vim
Docker image: haron/vim-with-plugins
Based on haron/vim
Adds support for the several useful plugins:
Command to run vim-with-plugins container:
sudo docker run -i -t --name my-vim-with-plugins -v ~/:/home/dev/src haron/vim-with-plugins
See vim-with-plugins Dockerfile for example.