summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2022-01-03 15:47:58 +0100
committerGitHub <[email protected]>2022-01-03 15:47:58 +0100
commit21b41688ee8c5056ffbb2b07df141ce1ccb4b213 (patch)
tree8e960532b36a3b8308dbee59a2c7138b74d64188 /Makefile
parenteefc148313917b1a474ba7bdf44d6d088524074a (diff)
refactor: use a static lvim binary template (#1444)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index aabe3d53..24d51271 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,19 @@
SHELL := /bin/bash
install:
- @echo Starting LunarVim Installer
+ @echo starting LunarVim installer
bash ./utils/installer/install.sh
+install-bin:
+ @echo starting LunarVim bin-installer
+ bash ./utils/installer/install_bin.sh
+
install-neovim-binary:
- @echo Installing Neovim from github releases
+ @echo installing Neovim from github releases
bash ./utils/installer/install-neovim-from-release
uninstall:
- @echo Starting LunarVim Uninstaller
+ @echo starting LunarVim uninstaller
bash ./utils/installer/uninstall.sh
generate_plugins_sha:
@@ -30,7 +34,7 @@ style-lua:
stylua --config-path .stylua.toml --check .
style-sh:
- shfmt -f . | grep -v jdtls | xargs shfmt -i 2 -ci -l -d
+ shfmt -f . | grep -v jdtls | xargs shfmt -i 2 -ci -bn -l -d
test:
bash ./utils/bin/test_runner.sh "$(TEST)"