Skip to content

Commit 4a28c13

Browse files
committedFeb 17, 2025
chore: update lazy preset to match latest changes
## Details Adds changes from the following commits to the `lazy` preset: - LazyVim/LazyVim@e9db488 - LazyVim/LazyVim@4f31bfa
1 parent f6c9e18 commit 4a28c13

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed
 

Diff for: ‎lua/render-markdown/health.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ local state = require('render-markdown.state')
55
local M = {}
66

77
---@private
8-
M.version = '8.0.3'
8+
M.version = '8.0.4'
99

1010
function M.check()
1111
M.start('version')

Diff for: ‎lua/render-markdown/presets.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function M.config_preset(name)
2222
---https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/plugins/extras/lang/markdown.lua
2323
---@type render.md.UserConfig
2424
return {
25-
file_types = { 'markdown', 'norg', 'rmd', 'org' },
25+
file_types = { 'markdown', 'norg', 'rmd', 'org', 'codecompanion' },
2626
code = {
2727
sign = false,
2828
width = 'block',
@@ -32,8 +32,12 @@ function M.config_preset(name)
3232
sign = false,
3333
icons = {},
3434
},
35+
checkbox = {
36+
enabled = false,
37+
},
3538
}
3639
else
40+
---@type render.md.UserConfig
3741
return {}
3842
end
3943
end
@@ -77,6 +81,7 @@ function M.pipe_table_preset(name)
7781
},
7882
}
7983
else
84+
---@type render.md.UserPipeTable
8085
return {}
8186
end
8287
end

0 commit comments

Comments
 (0)