aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEllison <ellisonleao@gmail.com>2022-06-28 18:22:41 -0300
committerGitHub <noreply@github.com>2022-06-28 18:22:41 -0300
commit7a5c7ace3ac169b2898a4c7d8abec42cf9e18003 (patch)
treed60cd1b5ce9e2c8330158444bf2a9121c684ce7e /Makefile
parent3352c12c083d0ab6285a9738b7679e24e7602411 (diff)
downloadgruvbox-7a5c7ace3ac169b2898a4c7d8abec42cf9e18003.tar.gz
gruvbox-7a5c7ace3ac169b2898a4c7d8abec42cf9e18003.tar.xz
New configuration system and more (Ref #96) (#122)
* initial work * adding more tests * updates * fixing overrides in groups with links * fix bg switch and some hl groups * adding languages hl groups * adding plugins highlights * stylua * removing base module and fixing lightline * adding terminal_color_* vars * adding new screenshot
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..54bc132
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+TESTS_INIT=tests/minimal_init.lua
+TESTS_DIR=tests/
+
+.PHONY: test
+
+test:
+ @nvim \
+ --headless \
+ --noplugin \
+ -u ${TESTS_INIT} \
+ -c "PlenaryBustedDirectory ${TESTS_DIR} { minimal_init = '${TESTS_INIT}' }"