summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/gitignore.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/ben/plugins/gitignore.lua')
-rw-r--r--lua/ben/plugins/gitignore.lua18
1 files changed, 0 insertions, 18 deletions
diff --git a/lua/ben/plugins/gitignore.lua b/lua/ben/plugins/gitignore.lua
deleted file mode 100644
index 0a657d9..0000000
--- a/lua/ben/plugins/gitignore.lua
+++ /dev/null
@@ -1,18 +0,0 @@
-return {
- "theniceboy/fzf-gitignore",
- dependencies = {
- {
- "junegunn/fzf",
- build = function()
- vim.fn["fzf#install"]()
- end,
- },
- },
- cond = function()
- return vim.fn.executable("python3") == 1
- end,
- build = function()
- vim.cmd([[UpdateRemotePlugins]])
- end,
- ft = "gitignore",
-}