Skip to content

Commit

Permalink
fix(nvim): indent blankline update
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
  • Loading branch information
caarlos0 committed Oct 4, 2023
1 parent cfd3be8 commit e0a7d06
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions modules/neovim/config/lua/user/indent.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
require("indent_blankline").setup({
char = "",
filetype_exclude = { "help", "alpha", "dashboard" },
show_trailing_blankline_indent = false,
show_current_context = false,
require("ibl").setup({
indent = { char = "" },
exclude = {
filetypes = { "help" },
},
scope = { enabled = true },
})

local treesj = require("treesj")
Expand Down

0 comments on commit e0a7d06

Please sign in to comment.