From ab96aa95e12792f0280c63c96093ff87e7e1862a Mon Sep 17 00:00:00 2001 From: river Date: Wed, 11 Feb 2026 14:36:43 -0600 Subject: [PATCH] java support --- lua/plugins/lsp.lua | 1 + lua/plugins/simple.lua | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 2f119f0..31c7a04 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -172,6 +172,7 @@ return { -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/ local servers = { clangd = {}, + jdtls = {}, -- intelephense = {}, -- gopls = {}, -- pyright = {}, diff --git a/lua/plugins/simple.lua b/lua/plugins/simple.lua index 7055272..1e1903d 100644 --- a/lua/plugins/simple.lua +++ b/lua/plugins/simple.lua @@ -15,5 +15,7 @@ return { { "denialofsandwich/sudo.nvim", dependencies = { "MunifTanjim/nui.nvim", },config = true, }, --write restricted files without restart {'akinsho/toggleterm.nvim', version = "*", config = true}, -- terminal toggling and commands {'RRethy/base16-nvim'}, - {'vyfor/cord.nvim'} --discord rich presence + { 'nvim-java/nvim-java', config = function() require('java').setup() vim.lsp.enable('jdtls') end, }, +{'vyfor/cord.nvim'}, --discord rich presence + {'basola21/PDFview'} }