Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 1.29 KB

README.md

File metadata and controls

63 lines (45 loc) · 1.29 KB

README

Demonstrates configuring a container for vim

Based on nice prompt example here

TODO:

  • Create neovim example
  • Give some examples of how to use it to develop some code

Build

# build and run
docker build -f Dockerfile.alpine -t vimcontainer . 
docker run --rm -it -d --name vimcontainer vimcontainer

Running

docker exec -it vimcontainer /bin/zsh   
# or 
docker exec -it vimcontainer /bin/bash   

Examples

vim --version

tmux

# start
vim 

# install plugins
:PlugInstall

# quit
:qa!

Cleanup

# cleanup the container
docker stop vimcontainer 

Resources