diff options
author | Christian Chiarulli <[email protected]> | 2021-07-19 22:50:07 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-19 22:50:07 -0400 |
commit | d02265175f33fb1586e5e1f080e0730c8642a961 (patch) | |
tree | 74edc2e46da039ab2c04c96d0198a8a30a4ca217 /lua/core/linter.lua | |
parent | acb6a7a2cedcb758db912cc4c9c8afdae7c11840 (diff) |
Decoupling config from nvim (#1038)
Diffstat (limited to 'lua/core/linter.lua')
-rw-r--r-- | lua/core/linter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/core/linter.lua b/lua/core/linter.lua index 676b0cf7..573d6d62 100644 --- a/lua/core/linter.lua +++ b/lua/core/linter.lua @@ -3,7 +3,7 @@ local M = {} M.setup = function() if O.lint_on_save then require("lv-utils").define_augroups { - autolint = { + autolint_on_save = { { "BufWritePost", "<buffer>", |