This is my personal neovim config, feel free to give it a try with docker and fork it to your needs.
docker run -it --name nvim marcpartensky/nvim
You can also check the official website Official neovim website
git clone https://github.com/MarcPartensky/nvim.git ~/.config/nvim
nvim ~/.config/nvim/vim-plug/plugins.vim
test
Then type the following:
- :source %
- :PlugInstall
That's it!
If you do not trust docker hub images you can build the image you can check the dockerfile and build the image yourself.
docker build ~/.config -t marcpartensky/nvim
or
cd ~/.config/nvim
make build
docker run -it --name nvim marcpartensky/nvim
or even
make run
├── LICENSE
├── README.md
├── bundle
│ ├── Atom
│ ├── auto-pairs
│ ├── ...
├── general
│ ├── mapping.vim
│ ├── navigation.vim
│ ├── ...
├── init.vim
├── pack
├── plugins
│ ├── coc.vim
│ ├── nerdtree.vim
│ ├── ...
├── themes
│ ├── airline.vim
│ ├── atom.vim
│ ├── ...
└── vim-plug
└── plugins.vim
This is how the folder should look like at the end.
If you are done, congratulations! otherwise add an issue if you find one and I will check it out! Pull requests are also welcome!