19 lines
316 B
Lua
19 lines
316 B
Lua
local M = {
|
|
'JoosepAlviste/nvim-ts-context-commentstring',
|
|
dependencies = {
|
|
'nvim-treesitter/nvim-treesitter',
|
|
},
|
|
opts = {},
|
|
}
|
|
|
|
M.config = function()
|
|
-- vim.g.skip_ts_context_commentstring_module = true
|
|
require 'ts_context_commentstring'.setup {
|
|
languages = {
|
|
vue = '<!-- %s -->',
|
|
},
|
|
}
|
|
end
|
|
|
|
return M
|