initial commit

This commit is contained in:
arne314
2024-10-31 13:21:20 +01:00
commit 9e69c2e0d2
2 changed files with 15 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.obsidian
assets

12
lua/typstar/init.lua Normal file
View File

@@ -0,0 +1,12 @@
local M = {}
local default_config = {
}
M.config = default_config
M.setup = function(args)
M.config = vim.tbl_deep_extend("force", M.config, args or {})
end
return M