fix(indentscope): Turn off indentscope in Mason (#16)

This commit is contained in:
fbearoff 2023-01-06 00:49:09 -05:00 committed by GitHub
parent 12dacc4d32
commit 694c1096d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,7 +97,7 @@ return {
event = "BufReadPre",
config = function()
vim.api.nvim_create_autocmd("FileType", {
pattern = { "help", "alpha", "dashboard", "neo-tree", "Trouble", "lazy" },
pattern = { "help", "alpha", "dashboard", "neo-tree", "Trouble", "lazy", "mason" },
callback = function()
vim.b.miniindentscope_disable = true
end,