mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(fzf): disable mini.indentscope in fzf-lua buffer
This commit is contained in:
parent
1c740ce3fd
commit
bf2ba458f4
1 changed files with 6 additions and 5 deletions
|
|
@ -14,17 +14,18 @@ return {
|
||||||
init = function()
|
init = function()
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
pattern = {
|
pattern = {
|
||||||
"help",
|
|
||||||
"alpha",
|
"alpha",
|
||||||
"dashboard",
|
"dashboard",
|
||||||
"neo-tree",
|
"fzf",
|
||||||
"Trouble",
|
"help",
|
||||||
"trouble",
|
|
||||||
"lazy",
|
"lazy",
|
||||||
|
"lazyterm",
|
||||||
"mason",
|
"mason",
|
||||||
|
"neo-tree",
|
||||||
"notify",
|
"notify",
|
||||||
"toggleterm",
|
"toggleterm",
|
||||||
"lazyterm",
|
"Trouble",
|
||||||
|
"trouble",
|
||||||
},
|
},
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.b.miniindentscope_disable = true
|
vim.b.miniindentscope_disable = true
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue