Skip to content

Commit

Permalink
scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
clpi committed Jan 12, 2025
1 parent 970ad36 commit 82ca557
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 1 deletion.
Empty file removed lua/down/mod/config/init.lua
Empty file.
22 changes: 22 additions & 0 deletions lua/down/mod/export/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---[[
--- A module for users to export their data
---]]

local down = require 'down'
local mod = down.mod
local util = down.util
local log = util.log

local Export = mod.new 'export'

Export.setup = function()
return {
loaded = true,
}
end

Export.maps = function() end

Export.load = function() end

return Export
21 changes: 20 additions & 1 deletion lua/down/mod/keymap/init.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
local mod = require 'down.mod'
---[[
--- A module for users to define their own keymaps dynamically
---]]

local down = require 'down'
local mod = down.mod
local util = down.util
local log = util.log

---@class down.mod.Keymap: down.Mod
local K = mod.new 'keymap'

K.setup = function()
return {
loaded = true,
}
end

K.maps = function() end

K.load = function() end

return K
Empty file removed lua/down/mod/time/data/init.lua
Empty file.
9 changes: 9 additions & 0 deletions lua/down/mod/time/date/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
local Date = {}

Date.setup = function()
return {
loaded = true,
}
end

return Date
9 changes: 9 additions & 0 deletions lua/down/mod/time/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
local Time = {}

Time.setup = function()
return {
loaded = true,
}
end

return Time

0 comments on commit 82ca557

Please sign in to comment.