nvim/lua/cosmic/plugins/comments/init.lua
Matthew Leong daaafc1f8d
Lazy.nvim (#88)
* feat: init lazy.nvim

* refactor: easy plugin init

* feat: user defined plugins

* refactor: clean up user config

* refactor: clean up lsp plugins

* fix: lsp signature

* fix: null ls user config

* feat: replace commands

* feat: optimize lazy loading

* fix: lsp_signature working

* fix: documentation hover/sig help

* fix: autopairs

* feat: clean up luasnips

* fix auto complete

* moar laziness

* feat: add markdown_inline to ensured_installed for TS

* clean up

* clean up auto-session
2022-12-29 08:34:17 -08:00

26 lines
973 B
Lua

local user_config = require('cosmic.core.user')
local u = require('cosmic.utils')
return {
'numToStr/Comment.nvim',
config = function()
require('Comment').setup(u.merge({
pre_hook = function(ctx)
local U = require('Comment.utils')
local location = nil
if ctx.ctype == U.ctype.block then
location = require('ts_context_commentstring.utils').get_cursor_location()
elseif ctx.cmotion == U.cmotion.v or ctx.cmotion == U.cmotion.V then
location = require('ts_context_commentstring.utils').get_visual_start_location()
end
return require('ts_context_commentstring.internal').calculate_commentstring({
key = ctx.ctype == U.ctype.line and '__default' or '__multiline',
location = location,
})
end,
}, user_config.plugins.comment_nvim or {}))
end,
event = 'BufEnter',
enabled = not vim.tbl_contains(user_config.disable_builtin_plugins, 'comment-nvim'),
}