diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Dockerfile | 2 | ||||
-rw-r--r-- | Makefile | 4 |
3 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,4 @@ package .vimcache nvim +vim-options @@ -93,5 +93,7 @@ ADD nvim /root/.config/nvim # Install neovim Modules RUN nvim +PlugInstall +qall RUN nvim +UpdateRemotePlugins +qall +# Add local vim-options, can override the one inside +ADD vim-options /root/.config/nvim/plugged/vim-options # Add isort config, also changes often ADD isort.cfg /root/.isort.cfg @@ -6,6 +6,10 @@ IMAGENAME=thornycrackers/neovim help: @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' +setup: ## Clone down additional repos that are needed for building + git clone git@github.com:thornycrackers/.nvim.git nvim + git clone git@github.com:thornycrackers/vim-options.git + build: ## Build the base image docker build -t thornycrackers/shellcheck shellcheck-builder docker run --rm -it -v $(CURDIR):/mnt thornycrackers/shellcheck |