Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ Just install and start writing `public static void main(String[] args)`.

## How to Use

## Pre-requisites

- [Python 3.9](https://www.python.org/downloads/) - for running `jdtls` wrapper launch script

### Install the plugin

Using [lazy.nvim](https://github.com/folke/lazy.nvim)
Expand Down
2 changes: 1 addition & 1 deletion lua/java/lspconfig.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local log = require('java-core.utils.log')
local lspconfig = require('lspconfig')
local server = require('java-core.server')
local server = require('java-core.ls.servers.jdtls')
local jdtls = require('java.jdtls')
local get_error_handler = require('java.handlers.error')

Expand Down