Skip to content

Instantly share code, notes, and snippets.

@davidsoles
Last active July 13, 2022 02:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidsoles/c7ff45f634a9b1944aeaaf8f3dd76787 to your computer and use it in GitHub Desktop.
Save davidsoles/c7ff45f634a9b1944aeaaf8f3dd76787 to your computer and use it in GitHub Desktop.
Sublime Text Java Configuration for Lombok
"command": [
"${java_executable}",
"--add-modules=ALL-SYSTEM",
"--add-opens",
"java.base/java.util=ALL-UNNAMED",
"--add-opens",
"java.base/java.lang=ALL-UNNAMED",
"-javaagent:/home/dsoles/.config/sublime-text/Lombok/lombok.jar",
"-Declipse.application=org.eclipse.jdt.ls.core.id1",
"-Dosgi.bundles.defaultStartLevel=4",
"-Declipse.product=org.eclipse.jdt.ls.core.product",
"-Dfile.encoding=UTF-8",
"-DwatchParentProcess=${watch_parent_process}",
"-noverify",
"-XX:+UseParallelGC",
"-XX:GCTimeRatio=4",
"-XX:AdaptiveSizePolicyWeight=90",
"-Dsun.zip.disableMemoryMapping=true",
"-Xmx1G",
"-Xms100m",
"-jar",
"${serverdir}/plugins/org.eclipse.equinox.launcher_${launcher_version}.jar",
"-configuration",
"${serverdir}/config_${jdtls_platform}",
"-data",
"${datadir}"
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment