dotfiles/vim/.vim/ycm_extra_conf.py

20 lines
607 B
Python
Raw Permalink Normal View History

2024-04-16 12:29:05 +02:00
import os
PATH_TO_LOMBOK = os.path.expanduser("/usr/lib/lombok-common/lombok.jar")
2024-08-23 11:20:30 +02:00
jdtls_args = ['-Xmx1G',
2024-04-16 12:29:05 +02:00
'-XX:+UseG1GC',
'-XX:+UseStringDeduplication']
2024-08-23 11:20:30 +02:00
# def Settings( **kwargs ):
# if not os.path.exists(PATH_TO_LOMBOK):
# raise RuntimeError("Didn't find lombok jar")
# if kwargs['language'] == 'java':
# return {
# 'server': {
# 'jvm_args': [
# '-javaagent:' + PATH_TO_LOMBOK,
# '-Xbootclasspath/a:' + PATH_TO_LOMBOK
# ] + jdtls_args
# }
# }