Added plugins

This commit is contained in:
Tony Thayer-Osborne 2023-03-13 15:56:50 -07:00 committed by Tony Thayer-Osborne
parent d350db2449
commit a1fdb97f3e
No known key found for this signature in database
GPG Key ID: 4750FF483E701B75
3 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,7 @@
return {
'junegunn/vim-easy-align',
config = function()
vim.keymap.set("n", "ga", "<Plug>(EasyAlign)")
vim.keymap.set("x", "ga", "<Plug>(EasyAlign)")
end,
}

View File

@ -2,4 +2,5 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
}

View File

@ -0,0 +1,8 @@
return {
"kylechui/nvim-surround",
config = function()
require("nvim-surround").setup({
-- Configuration here, or leave empty to use defaults
})
end
}