feat: Breakout surround into its own file

This commit is contained in:
Michael Yockey
2024-03-11 08:56:55 -04:00
parent 44982e3fec
commit f019a07953
2 changed files with 7 additions and 1 deletions

View File

@@ -2,7 +2,6 @@ return {
{ 'kepano/flexoki-neovim', name = 'flexoki', lazy = false }, { 'kepano/flexoki-neovim', name = 'flexoki', lazy = false },
'mbbill/undotree', 'mbbill/undotree',
'f-person/git-blame.nvim', 'f-person/git-blame.nvim',
'kylechui/nvim-surround',
'nvim-lua/plenary.nvim', 'nvim-lua/plenary.nvim',
'mfussenegger/nvim-dap', 'mfussenegger/nvim-dap',
'github/copilot.vim', 'github/copilot.vim',

View File

@@ -0,0 +1,7 @@
return {
'kylechui/nvim-surround',
event = 'VeryLazy',
config = function()
require('nvim-surround').setup({})
end,
}