First commit.
This commit is contained in:
commit
164e828e70
22 changed files with 1241 additions and 0 deletions
22
after/plugin/mini-indentscope.lua
Normal file
22
after/plugin/mini-indentscope.lua
Normal file
|
@ -0,0 +1,22 @@
|
|||
require('mini.indentscope').setup({
|
||||
symbol = "│",
|
||||
options = { try_as_border = true },
|
||||
})
|
||||
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = {
|
||||
"help",
|
||||
"alpha",
|
||||
"dashboard",
|
||||
"neo-tree",
|
||||
"Trouble",
|
||||
"lazy",
|
||||
"mason",
|
||||
"notify",
|
||||
"toggleterm",
|
||||
"lazyterm",
|
||||
},
|
||||
callback = function()
|
||||
vim.b.miniindentscope_disable = true
|
||||
end,
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue