Skip to content

Commit

Permalink
fix: reduce default disable_max_size 10MB->2MB
Browse files Browse the repository at this point in the history
  • Loading branch information
stevearc committed May 28, 2022
1 parent 95a6f71 commit 59d257f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/aerial/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ local default_options = {
disable_max_lines = 10000,

-- Disable aerial on files this size or larger (in bytes)
disable_max_size = 10000000,
disable_max_size = 2000000, -- Default 2MB

-- A list of all symbols to display. Set to false to display all symbols.
-- This can be a filetype map (see :help aerial-filetype-map)
Expand Down

0 comments on commit 59d257f

Please sign in to comment.