add indentscope autoCmd
This commit is contained in:
parent
bfc5703e1d
commit
ccfcaaa214
1 changed files with 21 additions and 0 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
autoGroups = {
|
autoGroups = {
|
||||||
highlight_yank = {};
|
highlight_yank = {};
|
||||||
vim_enter = {};
|
vim_enter = {};
|
||||||
|
indentscope = {};
|
||||||
};
|
};
|
||||||
|
|
||||||
autoCmd = [
|
autoCmd = [
|
||||||
|
|
@ -29,5 +30,25 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
group = "indentscope";
|
||||||
|
event = ["FileType"];
|
||||||
|
pattern = [
|
||||||
|
"help"
|
||||||
|
"Startup"
|
||||||
|
"startup"
|
||||||
|
"neo-tree"
|
||||||
|
"Trouble"
|
||||||
|
"trouble"
|
||||||
|
"notify"
|
||||||
|
];
|
||||||
|
callback = {
|
||||||
|
__raw = ''
|
||||||
|
function()
|
||||||
|
vim.b.miniindentscope_disable = true
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue