summaryrefslogtreecommitdiff
path: root/lua/lvim/core/commands.lua
diff options
context:
space:
mode:
authorLostNeophyte <[email protected]>2023-02-11 14:41:45 +0100
committerLostNeophyte <[email protected]>2023-02-11 14:44:24 +0100
commit7be867e2aac31ef04565eaba6b416ede766c06d7 (patch)
tree413dc6c0e82b04e14f505b7f291ed56f97dea9ea /lua/lvim/core/commands.lua
parented5b43bba06e6d1ef7b6bd7ed95c55b64e2df3c8 (diff)
refactor(builtins): move builtins to ./builtins
Diffstat (limited to 'lua/lvim/core/commands.lua')
-rw-r--r--lua/lvim/core/commands.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/commands.lua b/lua/lvim/core/commands.lua
index 2714838a..aa36d4b7 100644
--- a/lua/lvim/core/commands.lua
+++ b/lua/lvim/core/commands.lua
@@ -14,7 +14,7 @@ M.defaults = {
{
name = "BufferKill",
fn = function()
- require("lvim.core.bufferline").buf_kill "bd"
+ require("lvim.core.builtins.bufferline").buf_kill "bd"
end,
},
{