diff options
author | LostNeophyte <[email protected]> | 2023-02-07 18:57:10 +0100 |
---|---|---|
committer | LostNeophyte <[email protected]> | 2023-02-07 18:57:10 +0100 |
commit | 620e51898275764502853f3908707ef71ce42313 (patch) | |
tree | 8705fe27dc7690b041d061b80fd1c4fd42387882 /lua/lvim/core/terminal.lua | |
parent | 24d8780d7392f444f852e646eb8e438b4c629850 (diff) |
refactor(builtins): centralize setting up builtins
Diffstat (limited to 'lua/lvim/core/terminal.lua')
-rw-r--r-- | lua/lvim/core/terminal.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lua/lvim/core/terminal.lua b/lua/lvim/core/terminal.lua index 663ba77a..71d74430 100644 --- a/lua/lvim/core/terminal.lua +++ b/lua/lvim/core/terminal.lua @@ -4,7 +4,6 @@ local Log = require "lvim.core.log" M.config = function() lvim.builtin["terminal"] = { active = true, - on_config_done = nil, -- size can be a number or function which is passed the current terminal size = 20, open_mapping = [[<c-\>]], @@ -98,10 +97,6 @@ M.setup = function() M.add_exec(opts) end - - if lvim.builtin.terminal.on_config_done then - lvim.builtin.terminal.on_config_done(terminal) - end end M.add_exec = function(opts) |