Skip to content

Commit

Permalink
feat(nvim): add julia and java language servers
Browse files Browse the repository at this point in the history
  • Loading branch information
workflow committed Dec 17, 2023
1 parent dab768f commit 65f7558
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions home/neovim/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -47,21 +47,17 @@ 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 },
telemetry = { enable = false },
-- diagnostics = { disable = { 'missing-fields', 'undefined-global' } },
},
},
}
-- nil_ls = {}, -- nix
julials = {},
}

-- Setup neovim lua configuration
require('neodev').setup()
Expand Down

0 comments on commit 65f7558

Please sign in to comment.