1 files changed,
16 insertions(+),
0 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed at:
2023-08-21 00:56:28 +0300
Parent:
929f24c
M
lua/plugins/mini.lua
@@ -19,5 +19,21 @@ return 1
end, }, }, + init = function() + vim.api.nvim_create_autocmd("FileType", { + pattern = { + "help", + "Trouble", + "lazy", + "mason", + "notify", + "gitcommit", + "NeogitCommitMessage", + }, + callback = function() + vim.b.miniindentscope_disable = true + end, + }) + end, }, }