mirror of
https://github.com/Ascyii/typstar.git
synced 2026-03-02 09:32:42 +01: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