From 003ce4d44f552de1286ccf65fc17371dd55b6558 Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Thu, 22 Oct 2020 13:58:51 +0200 Subject: [PATCH] Add Java to nvim --- README.md | 1 + files/.gitconfig | 2 +- files/.vimrc | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 42d4f1b..7f076ff 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ + [Python](https://github.com/palantir/python-language-server) + [Rust](https://github.com/rust-analyzer/rust-analyzer) + [TeX](https://github.com/latex-lsp/texlab) ++ [Java](https://github.com/neovim/nvim-lspconfig#jdtls) ## Fonts + Fira Code Regular Nerd Font Complete Mono: General diff --git a/files/.gitconfig b/files/.gitconfig index 3be55fc..14f8979 100644 --- a/files/.gitconfig +++ b/files/.gitconfig @@ -1,6 +1,6 @@ [user] name = Marco Thomas - email = ma_tho@web.de + email = mail@marco-thomas.net [alias] aa = add . st = status diff --git a/files/.vimrc b/files/.vimrc index 795ae1c..91743e6 100644 --- a/files/.vimrc +++ b/files/.vimrc @@ -168,5 +168,6 @@ if has ("nvim") require'nvim_lsp'.pyls.setup{} require'nvim_lsp'.rust_analyzer.setup{} require'nvim_lsp'.texlab.setup{} + require'nvim_lsp'.jdtls.setup{} EOF endif