nvim-config/lua/configs/treesitter-context-commentstring.lua
2024-01-04 16:10:59 -08:00

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