Skip to content

Commit

Permalink
Added Comment.nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel-cavalcanti committed Oct 11, 2023
1 parent 47bb5e2 commit 6e91d24
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 240 deletions.
48 changes: 48 additions & 0 deletions after/plugin/comment.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
local comment = require('Comment')

comment.setup(
{
---Add a space b/w comment and the line
padding = true,
---Whether the cursor should stay at its position
sticky = true,
---Lines to be ignored while (un)comment
ignore = nil,
---LHS of toggle mappings in NORMAL mode
toggler = {
---Line-comment toggle keymap
line = 'gcc',
---Block-comment toggle keymap
block = 'gbc',
},
---LHS of operator-pending mappings in NORMAL and VISUAL mode
opleader = {
---Line-comment keymap
line = 'gc',
---Block-comment keymap
block = 'gb',
},
---LHS of extra mappings
extra = {
---Add comment on the line above
above = 'gcO',
---Add comment on the line below
below = 'gco',
---Add comment at the end of line
eol = 'gcA',
},
---Enable keybindings
---NOTE: If given `false` then the plugin won't create any mappings
mappings = {
---Operator-pending mapping; `gcc` `gbc` `gc[count]{motion}` `gb[count]{motion}`
basic = true,
---Extra mapping; `gco`, `gcO`, `gcA`
extra = true,
},
---Function to call before (un)comment
pre_hook = nil,
---Function to call after (un)comment
post_hook = nil,
}

)
5 changes: 5 additions & 0 deletions lua/startup/packer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ return require('packer').startup(function(use)
-- markdown
use({ 'toppair/peek.nvim', run = 'deno task --quiet build:fast' })

-- Comments
use {
'numToStr/Comment.nvim',
}


if packer_bootstrap then
require('packer').sync()
Expand Down
240 changes: 0 additions & 240 deletions plugin/packer_compiled.lua

This file was deleted.

0 comments on commit 6e91d24

Please sign in to comment.