Fork and customize config

This commit is contained in:
Garrett Dawson 2023-03-18 22:47:34 -06:00
parent 4a37a0a9b1
commit e137556250
6 changed files with 155 additions and 35 deletions

View file

@ -1,5 +1,26 @@
-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
{ "github/copilot.vim", },
{ "myusuf3/numbers.vim", },
{ "tpope/vim-eunuch", },
{ "tpope/vim-repeat", },
{ "tpope/vim-surround" },
{
"nvim-tree/nvim-web-devicons",
opts = {}
},
{
"windwp/nvim-autopairs",
config = function()
require("nvim-autopairs").setup {}
end,
},
{
"kristijanhusak/vim-dirvish-git",
dependencies = {
"justinmk/vim-dirvish",
},
},
}