Skip to content

Commit

Permalink
fix(cpp): tbl extend on opts.config instead of opts (#1228)
Browse files Browse the repository at this point in the history
Fix tbl extend on opts.config instead of opts
  • Loading branch information
theo97490 authored Oct 3, 2024
1 parent dc65561 commit ed524d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/astrocommunity/pack/cpp/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ return {
"AstroNvim/astrolsp",
optional = true,
opts = function(_, opts)
opts.config = vim.tbl_deep_extend("keep", opts, {
opts.config = vim.tbl_deep_extend("keep", opts.config, {
clangd = {
capabilities = {
offsetEncoding = "utf-8",
Expand Down

0 comments on commit ed524d2

Please sign in to comment.