added jdtls, need to play with it some more to add missing keymaps and
dap (need to properly configure dap anyway) remove nvim-tree remove goyo and limelight commands and keymaps
This commit is contained in:
@@ -152,6 +152,135 @@ return {
|
||||
}
|
||||
end
|
||||
},
|
||||
{
|
||||
'mfussenegger/nvim-jdtls',
|
||||
ft = { "java" },
|
||||
config = function()
|
||||
local home = os.getenv('HOME')
|
||||
local jdtls = require('jdtls')
|
||||
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
||||
local root_markers = { 'gradlew', 'mvnw', 'git' }
|
||||
local root_dir = require('jdtls.setup').find_root(root_markers)
|
||||
local workspace_folder = home .. "/.local/share/eclipse/" .. vim.fn.fnamemodify(root_dir, ":p:h:t")
|
||||
local config = {
|
||||
flags = {
|
||||
debounce_text_changes = 80,
|
||||
},
|
||||
capabilities = capabilities,
|
||||
on_attach = lsp_attach, -- We pass our on_attach keybindings to the configuration map
|
||||
root_dir = root_dir, -- Set the root directory to our found root_marker
|
||||
-- here you can configure eclipse.jdt.ls specific settings
|
||||
-- these are defined by the eclipse.jdt.ls project and will be passed to eclipse when starting.
|
||||
-- see https://github.com/eclipse/eclipse.jdt.ls/wiki/running-the-java-ls-server-from-the-command-line#initialize-request
|
||||
-- for a list of options
|
||||
settings = {
|
||||
java = {
|
||||
format = {
|
||||
settings = {
|
||||
-- use google java style guidelines for formatting
|
||||
-- to use, make sure to download the file from https://github.com/google/styleguide/blob/gh-pages/eclipse-java-google-style.xml
|
||||
-- and place it in the ~/.local/share/eclipse directory
|
||||
-- url = "/.local/share/eclipse/eclipse-java-google-style.xml",
|
||||
-- profile = "googlestyle",
|
||||
},
|
||||
},
|
||||
signaturehelp = { enabled = true },
|
||||
contentprovider = { preferred = 'fernflower' }, -- use fernflower to decompile library code
|
||||
-- specify any completion options
|
||||
completion = {
|
||||
favoritestaticmembers = {
|
||||
-- "org.hamcrest.matcherassert.assertthat",
|
||||
-- "org.hamcrest.matchers.*",
|
||||
-- "org.hamcrest.corematchers.*",
|
||||
-- "org.junit.jupiter.api.assertions.*",
|
||||
-- "java.util.objects.requirenonnull",
|
||||
-- "java.util.objects.requirenonnullelse",
|
||||
-- "org.mockito.mockito.*"
|
||||
},
|
||||
filteredtypes = {
|
||||
-- "com.sun.*",
|
||||
-- "io.micrometer.shaded.*",
|
||||
-- "java.awt.*",
|
||||
-- "jdk.*", "sun.*",
|
||||
},
|
||||
},
|
||||
-- specify any options for organizing imports
|
||||
sources = {
|
||||
organizeimports = {
|
||||
starthreshold = 9999,
|
||||
staticstarthreshold = 9999,
|
||||
},
|
||||
},
|
||||
-- how code generation should act
|
||||
codegeneration = {
|
||||
tostring = {
|
||||
template = "${object.classname}{${member.name()}=${member.value}, ${othermembers}}"
|
||||
},
|
||||
hashcodeequals = {
|
||||
usejava7objects = true,
|
||||
},
|
||||
useblocks = true,
|
||||
},
|
||||
-- if you are developing in projects with different java versions, you need
|
||||
-- to tell eclipse.jdt.ls to use the location of the jdk for your java version
|
||||
-- see https://github.com/eclipse/eclipse.jdt.ls/wiki/running-the-java-ls-server-from-the-command-line#initialize-request
|
||||
-- and search for `interface runtimeoption`
|
||||
-- the `name` is not arbitrary, but must match one of the elements from `enum executionenvironment` in the link above
|
||||
configuration = {
|
||||
runtimes = {
|
||||
{
|
||||
name = "JavaSE-17",
|
||||
path = home .. "/.local/share/asdf/installs/java/oracle-17.0.11/",
|
||||
},
|
||||
{
|
||||
name = "JavaSE-21",
|
||||
path = home .. "/.local/share/asdf/installs/java/oracle-21.0.2/",
|
||||
},
|
||||
{
|
||||
name = "JavaSE-1.8",
|
||||
path = home .. "/.local/share/asdf/installs/java/adoptopenjdk-8.0.412+8/"
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
-- cmd is the command that starts the language server. whatever is placed
|
||||
-- here is what is passed to the command line to execute jdtls.
|
||||
-- note that eclipse.jdt.ls must be started with a java version of 17 or higher
|
||||
-- see: https://github.com/eclipse/eclipse.jdt.ls#running-from-the-command-line
|
||||
-- for the full list of options
|
||||
cmd = {
|
||||
home .. "/.local/share/asdf/installs/java/oracle-21.0.2/bin/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',
|
||||
'-Xmx4G',
|
||||
'--add-modules=ALL-SYSTEM',
|
||||
'--add-opens', 'java.base/java.util=ALL-UNNAMED',
|
||||
'--add-opens', 'java.base/java.lang=ALL-UNNAMED',
|
||||
-- if you use lombok, download the lombok jar and place it in ~/.local/share/eclipse
|
||||
'-javaagent:' .. home .. '/.local/share/nvim/mason/packages/jdtls/lombok.jar',
|
||||
|
||||
-- the jar file is located where jdtls was installed. this will need to be updated
|
||||
-- to the location where you installed jdtls
|
||||
'-jar', vim.fn.glob(
|
||||
home ..
|
||||
'/.local/share/nvim/mason/packages/jdtls/plugins/org.eclipse.equinox.launcher_*.jar'),
|
||||
|
||||
-- the configuration for jdtls is also placed where jdtls was installed. this will
|
||||
-- need to be updated depending on your environment
|
||||
'-configuration', home .. '/.local/share/nvim/mason/packages/jdtls/config_linux',
|
||||
|
||||
-- use the workspace_folder defined above to store data for this project
|
||||
'-data', workspace_folder,
|
||||
},
|
||||
}
|
||||
|
||||
jdtls.start_or_attach(config)
|
||||
end
|
||||
},
|
||||
{ 'onsails/lspkind-nvim' }, -- pictograms replace (?) with lspsaga
|
||||
{
|
||||
'j-hui/fidget.nvim',
|
||||
|
@@ -4,16 +4,17 @@ return {
|
||||
version = '0.1.*',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
},
|
||||
{
|
||||
'nvim-tree/nvim-tree.lua',
|
||||
config = function()
|
||||
require('nvim-tree').setup {
|
||||
view = {
|
||||
width = 30,
|
||||
side = 'left',
|
||||
},
|
||||
}
|
||||
end,
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
||||
}
|
||||
-- Don't really need it. Nicer than the default but that's it
|
||||
-- {
|
||||
-- 'nvim-tree/nvim-tree.lua',
|
||||
-- config = function()
|
||||
-- require('nvim-tree').setup {
|
||||
-- view = {
|
||||
-- width = 30,
|
||||
-- side = 'left',
|
||||
-- },
|
||||
-- }
|
||||
-- end,
|
||||
-- dependencies = { 'nvim-tree/nvim-web-devicons' }
|
||||
-- }
|
||||
}
|
||||
|
Reference in New Issue
Block a user