mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2026-02-04 06:42:05 +00:00
chore: add new plugins
This commit is contained in:
17
lua/plugins/gitignore.lua
Normal file
17
lua/plugins/gitignore.lua
Normal file
@@ -0,0 +1,17 @@
|
||||
return {
|
||||
"wintermute-cell/gitignore.nvim",
|
||||
dependencies = { "nvim-telescope/telescope.nvim" },
|
||||
cmd = { "Gitignore" },
|
||||
keys = {
|
||||
{
|
||||
"<leader>gi",
|
||||
function()
|
||||
require("gitignore").generate()
|
||||
end,
|
||||
desc = "[G]it [I]gnore",
|
||||
},
|
||||
},
|
||||
config = function()
|
||||
require("gitignore")
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user