mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 01:38:54 +02:00
fix(indent-blankline): set config.indent.tab_char
(#1552)
See lukas-reineke/indent-blankline.nvim#665.
This commit is contained in:
parent
ecac59c982
commit
7c5a458761
1 changed files with 4 additions and 1 deletions
|
@ -168,7 +168,10 @@ return {
|
||||||
"lukas-reineke/indent-blankline.nvim",
|
"lukas-reineke/indent-blankline.nvim",
|
||||||
event = { "BufReadPost", "BufNewFile" },
|
event = { "BufReadPost", "BufNewFile" },
|
||||||
opts = {
|
opts = {
|
||||||
indent = { char = "│" },
|
indent = {
|
||||||
|
char = "│",
|
||||||
|
tab_char = "│",
|
||||||
|
},
|
||||||
scope = { enabled = false },
|
scope = { enabled = false },
|
||||||
exclude = {
|
exclude = {
|
||||||
filetypes = {
|
filetypes = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue