Skip to content

Commit

Permalink
feat: #128, add typings for hlchunk.setup()
Browse files Browse the repository at this point in the history
  • Loading branch information
itepechi committed Sep 19, 2024
1 parent 71bf751 commit 8169b0a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lua/hlchunk/init.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
local hlchunk = {}

---@class HlChunk.UserConf
---@field blank? HlChunk.UserBlankConf
---@field chunk? HlChunk.UserChunkConf
---@field indent? HlChunk.UserIndentConf
---@field line_num? HlChunk.UserLineNumConf

---@param userConf HlChunk.UserConf
hlchunk.setup = function(userConf)
for mod_name, mod_conf in pairs(userConf) do
if mod_conf.enable then
Expand Down

0 comments on commit 8169b0a

Please sign in to comment.