Added plugins
This commit is contained in:
parent
d350db2449
commit
a1fdb97f3e
7
lua/custom/plugins/align.lua
Normal file
7
lua/custom/plugins/align.lua
Normal 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,
|
||||||
|
}
|
@ -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 {
|
||||||
|
}
|
||||||
|
8
lua/custom/plugins/nvim-surround.lua
Normal file
8
lua/custom/plugins/nvim-surround.lua
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
return {
|
||||||
|
"kylechui/nvim-surround",
|
||||||
|
config = function()
|
||||||
|
require("nvim-surround").setup({
|
||||||
|
-- Configuration here, or leave empty to use defaults
|
||||||
|
})
|
||||||
|
end
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user