aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/git.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-09-30 22:09:01 +0200
committersrdusr <trevorgray@srdusr.com>2023-09-30 22:09:01 +0200
commitc020bbe626ef3f17abaae0d973a9b303064a5bff (patch)
treeaa1534af7800a7b2a3ad6167088a7dfe3a678958 /lua/plugins/git.lua
parent8ce39daf647b3c4836baf8d67f18bc32629abd35 (diff)
downloaddotfiles-c020bbe626ef3f17abaae0d973a9b303064a5bff.tar.gz
dotfiles-c020bbe626ef3f17abaae0d973a9b303064a5bff.zip
Removed
Diffstat (limited to 'lua/plugins/git.lua')
-rw-r--r--lua/plugins/git.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/lua/plugins/git.lua b/lua/plugins/git.lua
deleted file mode 100644
index 963f7f9..0000000
--- a/lua/plugins/git.lua
+++ /dev/null
@@ -1,11 +0,0 @@
-local status, git = pcall(require, "git")
-if (not status) then return end
-
-git.setup({
- keymaps = {
- -- Open blame window
- blame = "<Leader>gb",
- -- Open file/folder in git repository
- browse = "<Leader>go",
- }
-})