mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-14 16:11:34 +09:00
26 lines
469 B
Lua
26 lines
469 B
Lua
return {
|
|
{
|
|
"tpope/vim-unimpaired",
|
|
config = function()
|
|
end
|
|
},
|
|
{
|
|
"tpope/vim-commentary",
|
|
config = function()
|
|
end
|
|
},
|
|
{
|
|
"tpope/vim-surround",
|
|
config = function()
|
|
end
|
|
},
|
|
{
|
|
"easymotion/vim-easymotion",
|
|
config = function()
|
|
vim.keymap.set('n', '<Leader>s', '<Plug>(easymotion-overwin-f2)', {})
|
|
vim.keymap.set('n', '<Leader>w', '<Plug>(easymotion-bd-w)', {})
|
|
-- vim.keymap.set('n', '<Leader>w', '<Plug>(easymotion-bd-w)', {})
|
|
end
|
|
},
|
|
}
|