Skip to content

Commit c483e32

Browse files
committed
fix(config): fix typo in default config
1 parent bb79ed4 commit c483e32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/astrolsp/config.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
return {
1212
--- Configuration table of features provided by AstroLSP
1313
-- @usage features = {
14-
-- autoformat_enabled = true,
14+
-- autoformat = true,
1515
-- codelens = true,
1616
-- diagnostics_mode = 3,
1717
-- inlay_hints = false,
1818
-- lsp_handlers = true,
1919
-- semantic_tokens = true,
2020
-- }
2121
features = {
22-
autoformat_enabled = true, -- enable or disable auto formatting on start (boolean' default = true)
22+
autoformat = true, -- enable or disable auto formatting on start (boolean' default = true)
2323
codelens = true, -- enable/disable codelens refresh on start (boolean; default = true)
2424
diagnostics_mode = 3, -- diagnostic mode on start (0 = off, 1 = no signs/virtual text, 2 = no virtual text, 3 = off; default = 3)
2525
inlay_hints = false, -- enable/disable inlay hints on start (boolean; default = false)

0 commit comments

Comments
 (0)