changed comment key

This commit is contained in:
rapzy 2024-03-14 19:22:10 +05:45
parent 0e7b1c8f73
commit a5bb871598
1 changed files with 6 additions and 6 deletions

View File

@ -210,7 +210,7 @@ vim.api.nvim_create_autocmd('TextYankPost', {
desc = 'Highlight when yanking (copying) text', desc = 'Highlight when yanking (copying) text',
group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }), group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }),
callback = function() callback = function()
vim.highlight.on_yank { timeout = 100 } vim.highlight.on_yank { timeout = 70 }
end, end,
}) })
@ -264,10 +264,10 @@ require('lazy').setup({
'numToStr/Comment.nvim', 'numToStr/Comment.nvim',
opts = { opts = {
opleader = { opleader = {
---do comment ---[M]ake[C]omment
line = 'dc', line = 'mc',
---do block comment ---do block comment
block = 'db', block = 'mb',
}, },
}, },
}, },
@ -808,7 +808,7 @@ require('lazy').setup({
-- --
-- Examples: -- Examples:
-- - va) - [V]isually select [A]round [)]paren -- - va) - [V]isually select [A]round [)]paren
-- - yinq - [Y]ank [I]nside [N]ext [']quote -- - yin' - [Y]ank [I]nside [N]ext [']quote
-- - ci' - [C]hange [I]nside [']quote -- - ci' - [C]hange [I]nside [']quote
require('mini.ai').setup { n_lines = 500 } require('mini.ai').setup { n_lines = 500 }
@ -916,6 +916,6 @@ require('lazy').setup({
}, },
}, },
}) })
-- The line beneath this is called `modeline`. See `:help modeline` -- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et -- vim: ts=2 sts=2 sw=2 et