Skip to content

Commit a1fdb97

Browse files
Tony Thayer-Osbornetthayer
authored andcommitted
Added plugins
1 parent d350db2 commit a1fdb97

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

lua/custom/plugins/align.lua

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
return {
2+
'junegunn/vim-easy-align',
3+
config = function()
4+
vim.keymap.set("n", "ga", "<Plug>(EasyAlign)")
5+
vim.keymap.set("x", "ga", "<Plug>(EasyAlign)")
6+
end,
7+
}

lua/custom/plugins/init.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
-- I promise not to create any merge conflicts in this directory :)
33
--
44
-- See the kickstart.nvim README for more information
5-
return {}
5+
return {
6+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
return {
2+
"kylechui/nvim-surround",
3+
config = function()
4+
require("nvim-surround").setup({
5+
-- Configuration here, or leave empty to use defaults
6+
})
7+
end
8+
}

0 commit comments

Comments
 (0)