diff options
author | LostNeophyte <[email protected]> | 2023-01-25 18:55:31 +0100 |
---|---|---|
committer | LostNeophyte <[email protected]> | 2023-01-25 18:55:31 +0100 |
commit | 75b653cc623a8cd6de397e42f21b838a065eb0e0 (patch) | |
tree | 7b43499c99423651d7e75662bb4628569834e28f /lua/lvim/core/indentlines.lua | |
parent | 4f02e54d923414eb6690d64c7e334f624a2a9342 (diff) |
refactor!: put all plugin options under `opts`
Diffstat (limited to 'lua/lvim/core/indentlines.lua')
-rw-r--r-- | lua/lvim/core/indentlines.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lvim/core/indentlines.lua b/lua/lvim/core/indentlines.lua index 1d134a4a..12521b3f 100644 --- a/lua/lvim/core/indentlines.lua +++ b/lua/lvim/core/indentlines.lua @@ -2,7 +2,7 @@ local M = {} M.config = function() local config = { - options = { + opts = { enabled = true, buftype_exclude = { "terminal", "nofile" }, filetype_exclude = { @@ -34,7 +34,7 @@ M.setup = function() return end - indent_blankline.setup(lvim.builtin.indentlines.options) + indent_blankline.setup(lvim.builtin.indentlines.opts) end return M |