From 65f75587d6da4e2d0ff0b974ec10249f3e11d978 Mon Sep 17 00:00:00 2001 From: workflow <4farlion@gmail.com> Date: Sun, 17 Dec 2023 21:56:04 +0000 Subject: [PATCH] feat(nvim): add julia and java language servers --- home/neovim/lsp.lua | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/home/neovim/lsp.lua b/home/neovim/lsp.lua index 77324988..b1474205 100644 --- a/home/neovim/lsp.lua +++ b/home/neovim/lsp.lua @@ -47,13 +47,7 @@ require('mason').setup() require('mason-lspconfig').setup() local servers = { - -- clangd = {}, - -- gopls = {}, - -- pyright = {}, - -- rust_analyzer = {}, - -- tsserver = {}, - -- html = { filetypes = { 'html', 'twig', 'hbs'} }, - + jdtls = {}, -- java lua_ls = { Lua = { workspace = { checkThirdParty = false }, @@ -61,7 +55,9 @@ local servers = { -- diagnostics = { disable = { 'missing-fields', 'undefined-global' } }, }, }, -} + -- nil_ls = {}, -- nix + julials = {}, + } -- Setup neovim lua configuration require('neodev').setup()