mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-27 22:24:50 +02:00
fix(autocmds): apply conceal level change to local buffer options (#2409)
This commit is contained in:
parent
54ae77e164
commit
591f850f8a
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ vim.api.nvim_create_autocmd({ "FileType" }, {
|
||||||
group = augroup("json_conceal"),
|
group = augroup("json_conceal"),
|
||||||
pattern = { "json", "jsonc", "json5" },
|
pattern = { "json", "jsonc", "json5" },
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.wo.conceallevel = 0
|
vim.opt_local.conceallevel = 0
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue