1
Fork 0
satellite/dotfiles/neovim/lua/my/init.lua

11 lines
167 B
Lua
Raw Normal View History

2023-01-10 02:38:06 +01:00
local M = {}
function M.setup()
-- Import my other files
require("my.options").setup()
require("my.keymaps").setup()
require("my.lazy").setup()
2023-01-10 02:38:06 +01:00
end
return M