Skip to content

Commit

Permalink
fix: add modules.lua
Browse files Browse the repository at this point in the history
use it to load modules for coding & ricing.
  • Loading branch information
SamIsTheFBI committed Jan 10, 2024
1 parent 6b546b5 commit 39a65c7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .config/nvim/lua/modules.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- load modules
local modules = {
"coding",
"ricing",
}

for _, mod in ipairs(modules) do
require("" .. mod)
end

0 comments on commit 39a65c7

Please sign in to comment.