install and configure vim surround plugin
This commit is contained in:
parent
9459f0f20e
commit
46496f572d
|
|
@ -30,5 +30,6 @@
|
|||
"vim-fugitive": { "branch": "master", "commit": "e7bf502a6ae492f42a91d231864e25630286319b" },
|
||||
"vim-rhubarb": { "branch": "master", "commit": "ee69335de176d9325267b0fd2597a22901d927b1" },
|
||||
"vim-sleuth": { "branch": "master", "commit": "1cc4557420f215d02c4d2645a748a816c220e99b" },
|
||||
"vim-surround": { "branch": "master", "commit": "3d188ed2113431cf8dac77be61b842acb64433d9" },
|
||||
"which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" }
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
-- file browser
|
||||
return { 'stevearc/oil.nvim',
|
||||
return {
|
||||
'stevearc/oil.nvim',
|
||||
config = function()
|
||||
require("oil").setup();
|
||||
vim.keymap.set('n', '<leader>-', '<CMD>Oil --float<CR>', { desc = 'Open current directory' })
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
{
|
||||
'tpope/vim-surround'
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue