diff --git a/.editorconfig b/.editorconfig index 8529c8b..429a9b0 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,3 +7,6 @@ end_of_line = lf indent_style = space indent_size = 4 insert_final_newline = true + +[{Makefile,*.mk}] +indent_style = tab diff --git a/Makefile b/Makefile index 702e97a..d6b2e5c 100644 --- a/Makefile +++ b/Makefile @@ -11,4 +11,8 @@ test: nvim --headless --noplugin -u scripts/tests/minimal.vim \ -c "PlenaryBustedDirectory lua/harpoon/test/ {minimal_init = 'scripts/tests/minimal.vim'}" +clean: + echo "===> Cleaning" + rm /tmp/lua_* + pr-ready: fmt lint test