fix(astrocore): `max_file` renamed to `large_buf`
parent
f142075daa
commit
568db39c67
|
@ -8,7 +8,7 @@ return {
|
||||||
opts = {
|
opts = {
|
||||||
-- modify core features of AstroNvim
|
-- modify core features of AstroNvim
|
||||||
features = {
|
features = {
|
||||||
max_file = { size = 1024 * 100, lines = 10000 }, -- set global limits for large files for disabling features like treesitter
|
large_buf = { size = 1024 * 100, lines = 10000 }, -- set global limits for large files for disabling features like treesitter
|
||||||
autopairs = true, -- enable autopairs at start
|
autopairs = true, -- enable autopairs at start
|
||||||
cmp = true, -- enable completion at start
|
cmp = true, -- enable completion at start
|
||||||
highlighturl = true, -- highlight URLs at start
|
highlighturl = true, -- highlight URLs at start
|
||||||
|
|
Loading…
Reference in New Issue