Skip to content

Commit

Permalink
Use makefile instead of .nvim.lua
Browse files Browse the repository at this point in the history
Pros:
1. No need to manually trust to .nvim.lua in nvim
2. can run tests from vim
  • Loading branch information
nikitabobko committed Sep 23, 2024
1 parent 7e47404 commit 62c89ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .nvim.lua

This file was deleted.

8 changes: 8 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# makefile is used to make :make command in vim work out of the box
.PHONY: build test

build:
./build-debug.sh

test:
./run-tests.sh

0 comments on commit 62c89ef

Please sign in to comment.