Added plugins
This commit is contained in:
parent
d350db2449
commit
a1fdb97f3e
|
@ -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,
|
||||||
|
}
|
|
@ -2,4 +2,5 @@
|
||||||
-- I promise not to create any merge conflicts in this directory :)
|
-- I promise not to create any merge conflicts in this directory :)
|
||||||
--
|
--
|
||||||
-- See the kickstart.nvim README for more information
|
-- See the kickstart.nvim README for more information
|
||||||
return {}
|
return {
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
return {
|
||||||
|
"kylechui/nvim-surround",
|
||||||
|
config = function()
|
||||||
|
require("nvim-surround").setup({
|
||||||
|
-- Configuration here, or leave empty to use defaults
|
||||||
|
})
|
||||||
|
end
|
||||||
|
}
|
Loading…
Reference in New Issue