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/cmp.lua | |
parent | 24d8780d7392f444f852e646eb8e438b4c629850 (diff) |
refactor(builtins): centralize setting up builtins
Diffstat (limited to 'lua/lvim/core/cmp.lua')
-rw-r--r-- | lua/lvim/core/cmp.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lua/lvim/core/cmp.lua b/lua/lvim/core/cmp.lua index c116f122..e22e82c9 100644 --- a/lua/lvim/core/cmp.lua +++ b/lua/lvim/core/cmp.lua @@ -132,7 +132,6 @@ M.config = function() lvim.builtin.cmp = { active = true, - on_config_done = nil, enabled = function() local buftype = vim.api.nvim_buf_get_option(0, "buftype") if buftype == "prompt" then @@ -371,10 +370,6 @@ function M.setup() }) end end - - if lvim.builtin.cmp.on_config_done then - lvim.builtin.cmp.on_config_done(cmp) - end end return M |