15 lines
250 B
Lua
15 lines
250 B
Lua
|
local M = {}
|
||
|
|
||
|
function M.config()
|
||
|
local present, treesitter_context_commentstring = pcall(require, 'ts_context_commentstring')
|
||
|
if not present then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
treesitter_context_commentstring.setup({
|
||
|
enable_autocmd = false,
|
||
|
})
|
||
|
end
|
||
|
|
||
|
return M
|