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/project.lua | |
parent | 24d8780d7392f444f852e646eb8e438b4c629850 (diff) |
refactor(builtins): centralize setting up builtins
Diffstat (limited to 'lua/lvim/core/project.lua')
-rw-r--r-- | lua/lvim/core/project.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lua/lvim/core/project.lua b/lua/lvim/core/project.lua index 17473c55..c78ebf61 100644 --- a/lua/lvim/core/project.lua +++ b/lua/lvim/core/project.lua @@ -6,8 +6,6 @@ function M.config() --- This is on by default since it's currently the expected behavior. active = true, - on_config_done = nil, - ---@usage set to true to disable setting the current-woriking directory --- Manual mode doesn't automatically change your root directory, so you have --- the option to manually do so using `:ProjectRoot` command. @@ -59,9 +57,6 @@ function M.setup() end project.setup(lvim.builtin.project) - if lvim.builtin.project.on_config_done then - lvim.builtin.project.on_config_done(project) - end end return M |