configure vim with completion, code navigation, linting

This commit is contained in:
Tim Schubert 2020-06-06 19:11:34 +02:00
parent 869f1ab3a1
commit 5e7d4b68f5
No known key found for this signature in database
GPG key ID: 99658A3EB5CD7C13
7 changed files with 168 additions and 2 deletions

View file

@ -1,4 +1,4 @@
.PHONY: configure build docker-build-image all build configure clean test
.PHONY: configure build docker-build-image all build configure clean test compile_commands shell
DOCKER_RUN=docker run -it --mount type=bind,source="$(PWD)"/bake,target=/usr/bake ns-3-leo
@ -23,3 +23,9 @@ clean: docker-build-image
test: docker-build-image
$(DOCKER_RUN) /bin/bash -c 'cd source/ns-3-leo/ && ./test.py'
compile_commands: docker-build-image
$(DOCKER_RUN) /bin/bash -c "bear ./bake.py build"
shell:
$(DOCKER_RUN) /bin/bash