diff --git a/lazy-lock.json b/lazy-lock.json index 89446881..f48886b9 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -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" } } \ No newline at end of file diff --git a/lua/plugins/oil.lua b/lua/plugins/oil.lua index 492c860e..52174176 100644 --- a/lua/plugins/oil.lua +++ b/lua/plugins/oil.lua @@ -1,5 +1,6 @@ -- file browser -return { 'stevearc/oil.nvim', +return { + 'stevearc/oil.nvim', config = function() require("oil").setup(); vim.keymap.set('n', '-', 'Oil --float', { desc = 'Open current directory' }) diff --git a/lua/plugins/vimsurround.lua b/lua/plugins/vimsurround.lua new file mode 100644 index 00000000..4f101a3a --- /dev/null +++ b/lua/plugins/vimsurround.lua @@ -0,0 +1,5 @@ +return { + { + 'tpope/vim-surround' + } +}