Skip to content

Commit

Permalink
fix(mini-indentscope): ignore more filetypes (#538)
Browse files Browse the repository at this point in the history
  • Loading branch information
Subjective authored Aug 25, 2023
1 parent 6ad36ac commit 10c95c8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lua/astrocommunity/indent/mini-indentscope/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,22 @@ return {
init = function()
vim.api.nvim_create_autocmd("FileType", {
pattern = {
"Trouble",
"aerial",
"alpha",
"checkhealth",
"dashboard",
"fzf",
"help",
"neo-tree",
"lazy",
"lspinfo",
"man",
"mason",
"neo-tree",
"notify",
"null-ls-info",
"starter",
"toggleterm",
"Trouble",
"undotree",
},
callback = function() vim.b.miniindentscope_disable = true end,
Expand Down

0 comments on commit 10c95c8

Please sign in to comment.