Skip to content

Commit

Permalink
updating lots of scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
clpi committed Nov 16, 2024
1 parent 9a3984a commit 10a2661
Show file tree
Hide file tree
Showing 20 changed files with 1,889 additions and 1,591 deletions.
612 changes: 612 additions & 0 deletions .icon/module.lua

Large diffs are not rendered by default.

901 changes: 901 additions & 0 deletions .icon/util.lua

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
NVIM_BIN ?= nvim

clean:
fd --glob '*-E' -x rm





test:
echo ""
2 changes: 2 additions & 0 deletions lua/dorm/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
local dorm = {
callbacks = require("dorm.util.callback"),
config = require("dorm.config"),
lsp = require("dorm.lsp"),
cmd = require("dorm.cmd"),
ui = require("dorm.ui"),
log = require("dorm.util.log"),
mod = require("dorm.mod"),
Expand Down
5 changes: 5 additions & 0 deletions lua/dorm/mod/base/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ return mod.create_meta(
"store",
"code",
"pick",
-- "icon",
"lsp",
'completion',
'data',
"resources",
"metadata",
"capture",
"template",
Expand Down
9 changes: 9 additions & 0 deletions lua/dorm/mod/completion/module.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
local dib = require "dib"

local M = dib.mod.create("data")

M.load = function()

end

return M
8 changes: 8 additions & 0 deletions lua/dorm/mod/data/module.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
local d = require "dorm"
local M = d.mod.create("data")

M.load = function()

end

return M
8 changes: 0 additions & 8 deletions lua/dorm/mod/icon/base/module.lua

This file was deleted.

24 changes: 0 additions & 24 deletions lua/dorm/mod/icon/diamond/module.lua

This file was deleted.

Loading

0 comments on commit 10a2661

Please sign in to comment.