summaryrefslogtreecommitdiff
path: root/lua/lvim/core/indentlines.lua
diff options
context:
space:
mode:
authorLostNeophyte <[email protected]>2023-02-07 18:57:10 +0100
committerLostNeophyte <[email protected]>2023-02-07 18:57:10 +0100
commit620e51898275764502853f3908707ef71ce42313 (patch)
tree8705fe27dc7690b041d061b80fd1c4fd42387882 /lua/lvim/core/indentlines.lua
parent24d8780d7392f444f852e646eb8e438b4c629850 (diff)
refactor(builtins): centralize setting up builtins
Diffstat (limited to 'lua/lvim/core/indentlines.lua')
-rw-r--r--lua/lvim/core/indentlines.lua5
1 files changed, 0 insertions, 5 deletions
diff --git a/lua/lvim/core/indentlines.lua b/lua/lvim/core/indentlines.lua
index 3097daf8..98354a30 100644
--- a/lua/lvim/core/indentlines.lua
+++ b/lua/lvim/core/indentlines.lua
@@ -3,7 +3,6 @@ local M = {}
M.config = function()
lvim.builtin.indentlines = {
active = true,
- on_config_done = nil,
options = {
enabled = true,
buftype_exclude = { "terminal", "nofile" },
@@ -34,10 +33,6 @@ M.setup = function()
end
indent_blankline.setup(lvim.builtin.indentlines.options)
-
- if lvim.builtin.indentlines.on_config_done then
- lvim.builtin.indentlines.on_config_done()
- end
end
return M