nvim-config/lua/configs/treesitter-context-commentstring.lua

15 lines
250 B
Lua
Raw Normal View History

2024-01-05 00:10:59 +00:00
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