fix(indentscope): added extra filetypes to exclude

This commit is contained in:
Folke Lemaitre 2023-01-04 12:38:39 +01:00
parent 276c46107e
commit a893251079
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

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