Skip to content

Commit

Permalink
fix: disable help and vimdoc files by default (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgriffing authored Apr 14, 2024
1 parent a55d14e commit a58b397
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lua/nvim-biscuits/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ config.default_config = function()
-- on_events example: { "InsertLeave", "CursorHoldI" }
on_events = {},
trim_by_words = false,
show_on_start = true
show_on_start = true,
language_config = {
help = {
disabled = true
},
vimdoc = {
disabled = true
}
}
}
end

Expand Down

0 comments on commit a58b397

Please sign in to comment.