mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
add: disable jdtls if nvim-jdtls active
This commit is contained in:
parent
524bfc707b
commit
e009cbb877
4 changed files with 25 additions and 16 deletions
|
@ -17,6 +17,13 @@ end
|
|||
|
||||
if pcode.active_java_config.active then
|
||||
M = {
|
||||
{
|
||||
"williamboman/mason-lspconfig.nvim",
|
||||
opts = function(_, opts)
|
||||
opts.skip_config = opts.skip_config or {}
|
||||
vim.list_extend(opts.skip_config, { "jdtls" })
|
||||
end,
|
||||
},
|
||||
{
|
||||
"mfussenegger/nvim-jdtls",
|
||||
ft = java_filetypes,
|
||||
|
@ -248,7 +255,7 @@ if pcode.active_java_config.active then
|
|||
},
|
||||
},
|
||||
{
|
||||
"simrat39/symbols-outline.nvim",
|
||||
"rockerBOO/symbols-outline.nvim",
|
||||
cmd = "SymbolsOutline",
|
||||
config = function()
|
||||
require("symbols-outline").setup({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue