Hyprland-dotfiles/nvim/lua/modules/configs/editor/ts-context-commentstring.lua
2024-07-21 02:51:17 -04:00

8 lines
242 B
Lua

return function()
vim.g.skip_ts_context_commentstring_module = true
require("modules.utils").load_plugin("ts_context_commentstring", {
-- Whether to update the `commentstring` on the `CursorHold` autocmd
enable_autocmd = false,
})
end