mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-01 04:54:35 +02:00
fix(rust): don't overwrite vim.g.rustaceanvim
if it is defined (#2720)
This commit is contained in:
parent
d2f7cb0462
commit
2a666ac5f2
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
config = function(_, opts)
|
config = function(_, opts)
|
||||||
vim.g.rustaceanvim = vim.tbl_deep_extend("force", {}, opts or {})
|
vim.g.rustaceanvim = vim.tbl_deep_extend("keep", vim.g.rustaceanvim or {}, opts or {})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue