mirror of
https://github.com/Ascyii/typstar.git
synced 2026-01-01 13:34:24 -05:00
initial commit
This commit is contained in:
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
.obsidian
|
||||||
|
assets
|
||||||
|
|
||||||
12
lua/typstar/init.lua
Normal file
12
lua/typstar/init.lua
Normal 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
|
||||||
Reference in New Issue
Block a user