solorice/.config/nvim/lua/user/comment.lua
Kristofers Solo b0d56edd56 Update neovim
2022-08-27 21:53:40 +03:00

24 lines
693 B
Lua

local status_ok, comment = pcall(require, "nvim_comment")
if not status_ok then
return
end
comment.setup({
-- Linters prefer comment and line to have a space in between markers
marker_padding = true,
-- should comment out empty or whitespace only lines
comment_empty = true,
-- trim empty comment whitespace
comment_empty_trim_whitespace = true,
-- Should key mappings be created
create_mappings = true,
-- Normal mode mapping left hand side
line_mapping = "gcc",
-- Visual/Operator mapping left hand side
operator_mapping = "gc",
-- text object mapping, comment chunk,,
comment_chunk_text_object = "ic",
-- Hook function to call before commenting takes place
hook = nil,
})