mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-22 06:33:08 +01:00
10 lines
275 B
Lua
10 lines
275 B
Lua
local comment = require("Comment")
|
|
|
|
local ts_context_commentstring = require("ts_context_commentstring.integrations.comment_nvim")
|
|
|
|
-- enable comment
|
|
comment.setup({
|
|
-- for commenting tsx, jsx, svelte, html files
|
|
pre_hook = ts_context_commentstring.create_pre_hook(),
|
|
})
|