I broke up with neovim....vim is my best friend now

This commit is contained in:
LinlyBoi
2023-04-30 08:14:07 +03:00
parent 0d185449c5
commit 4a4a6b1e81
5245 changed files with 468325 additions and 25 deletions

View File

@@ -0,0 +1,21 @@
@echo off
curl -LO "https://download.eclipse.org/jdtls/snapshots/jdt-language-server-latest.tar.gz"
curl -o lombok.jar "https://projectlombok.org/downloads/lombok.jar"
tar xvf jdt-language-server-latest.tar.gz
rm jdt-language-server-latest.tar.gz
echo @echo off ^
setlocal enabledelayedexpansion ^
for %%%%F in (%%~dp0\plugins\org.eclipse.equinox.launcher_*.jar) do ( ^
set launcher=%%%%F ^
) ^
java -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Dlog.protocol=true -Dlog.level=ALL -noverify -Xmx1G -javaagent:%%~dp0/lombok.jar -Xbootclasspath/a:%%~dp0/lombok.jar -jar !launcher! -configuration %%~dp0\config_win -data %%~dp0\data ^
> eclipse-jdt-ls.cmd