commit 9f051acb3542b9a0bd99c39d8763fb331d27c752 parent 2b7f0b7fcc5e849b7ca3281b25af165f819cdecb Author: bdmfegys@duck.com <bdmfegys@duck.com> Date: Tue, 30 Apr 2024 17:04:15 -0400 init.lua, index.lua: migrate inclusion of file from init.lua to index.lua Diffstat:
| M | init.lua | | | 5 | +---- |
| A | lua/index.lua | | | 4 | ++++ |
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/init.lua b/init.lua @@ -10,7 +10,4 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then }) end vim.opt.rtp:prepend(lazypath) -require("plugins") -require("options") -require("autostart") -require("whichkey") +require("index") diff --git a/lua/index.lua b/lua/index.lua @@ -0,0 +1,4 @@ +require("plugins") +require("options") +require("autostart") +require("whichkey")