Skip to content

Commit

Permalink
fix: user jdtls setup config wont override the default config (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
s1n7ax committed Dec 17, 2023
1 parent c5c509e commit fa14d06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/java/startup/lspconfig-setup-wrap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function M.setup(config)
use_mason_jdk = config.jdk.auto_install,
})

org_setup(vim.tbl_extend('force', user_config, default_config))
org_setup(vim.tbl_extend('force', default_config, user_config))
end
end

Expand Down

0 comments on commit fa14d06

Please sign in to comment.