Skip to content

Commit

Permalink
install in-and-out.nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
pandanoir committed Jan 7, 2025
1 parent 910c128 commit ee0f6fc
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion nvim/lua/plugins/others.lua
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,16 @@ return {
vim.keymap.set('n', 'gaok', function() op('to_dash_case') end, { desc = 'to-kebab-case' })
vim.keymap.set('n', 'gaoC', function() op('to_pascal_case') end, { desc = 'ToUpperCamelCase' })
end
}
},
{
'ysmb-wtsg/in-and-out.nvim',
config = true,
init = function()
vim.keymap.set(
'i',
'<c-l>',
require('in-and-out').in_and_out
)
end,
},
}

0 comments on commit ee0f6fc

Please sign in to comment.