mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
16 lines
385 B
Lua
16 lines
385 B
Lua
-- Code editor module
|
|
|
|
---@class EditorModule
|
|
---@field syntax function Syntax highlighting configuration
|
|
---@field toolbar function Editor toolbar configuration
|
|
---@field gutter function Editor gutter configuration
|
|
|
|
---@type EditorModule
|
|
local editor = {
|
|
syntax = require("editor.syntax"),
|
|
toolbar = require("editor.toolbar"),
|
|
gutter = require("editor.gutter")
|
|
}
|
|
|
|
return editor
|