initial settings

This commit is contained in:
Jeremie Fraeys 2023-08-21 17:57:57 -04:00
parent 01a1ebed38
commit 7b4488ba07
4 changed files with 48 additions and 11 deletions

View file

@ -0,0 +1,15 @@
return {
"windwp/nvim-autopairs",
-- Optional dependency
dependencies = { 'hrsh7th/nvim-cmp' },
config = function()
require("nvim-autopairs").setup {}
-- If you want to automatically add `(` after selecting a function or method
local cmp_autopairs = require('nvim-autopairs.completion.cmp')
local cmp = require('cmp')
cmp.event:on(
'confirm_done',
cmp_autopairs.on_confirm_done()
)
end,
}

View file

@ -0,0 +1,6 @@
return {
'tpope/vim-fugitive',
config = function ()
vim.keymap.set('n', '<leader>gs', vim.cmd.Git)
end
}

View file

@ -0,0 +1,6 @@
return {
'mbbill/undotree',
config = function()
vim.keymap.set('n', '<leader>u', vim.cmd.UndotreeToggle, { desc = '[U]ndotree' })
end
}