Skip to content

Commit

Permalink
fix(indent-blankline): error caused by BufReadPost event.
Browse files Browse the repository at this point in the history
  • Loading branch information
ayamir committed Sep 2, 2023
1 parent 6abd6bc commit 0ce5f35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lua/modules/configs/ui/indent-blankline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ return function()
show_first_indent_level = true,
filetype_exclude = {
"", -- for all buffers without a file type
"alpha",
"dashboard",
"dotooagenda",
"flutterToolsOutline",
Expand Down
2 changes: 1 addition & 1 deletion lua/modules/plugins/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ui["lewis6991/gitsigns.nvim"] = {
}
ui["lukas-reineke/indent-blankline.nvim"] = {
lazy = true,
event = "BufReadPost",
event = { "CursorHold", "CursorHoldI" },
config = require("ui.indent-blankline"),
}
ui["nvim-lualine/lualine.nvim"] = {
Expand Down

0 comments on commit 0ce5f35

Please # to comment.