Skip to content

Commit

Permalink
fix(indent-blankline-nvim): Fix indent-blankline-nvim configuration t…
Browse files Browse the repository at this point in the history
…o match the new plugin requirements (#597)

Fix: fix #596; Fix indent-blankline configuration to match the new plugin requirements
  • Loading branch information
Dev-Aulotte authored Oct 8, 2023
1 parent 780a4a8 commit 7bd974c
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions lua/astrocommunity/indent/indent-blankline-nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@ return {
"lukas-reineke/indent-blankline.nvim",
event = "User AstroFile",
opts = {
char = "",
filetype_exclude = { "help", "alpha", "dashboard", "neo-tree", "Trouble", "lazy" },
show_trailing_blankline_indent = false,
show_current_context = false,
indent = {
char = "",
},
scope = {
enabled = false,
},
exclude = {
filetypes = { "help", "alpha", "dashboard", "Trouble", "lazy", "neo-tree" },
},
whitespace = {
remove_blankline_trail = true,
},
},
}

0 comments on commit 7bd974c

Please sign in to comment.