From dfe212fdf0bf414493fccb1bfbcef6f30c6cab73 Mon Sep 17 00:00:00 2001 From: srdusr Date: Mon, 24 Oct 2022 00:11:06 +0200 Subject: Resort files into different directories --- lua/plugins/git.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lua/plugins/git.lua (limited to 'lua/plugins/git.lua') diff --git a/lua/plugins/git.lua b/lua/plugins/git.lua new file mode 100644 index 0000000..963f7f9 --- /dev/null +++ b/lua/plugins/git.lua @@ -0,0 +1,11 @@ +local status, git = pcall(require, "git") +if (not status) then return end + +git.setup({ + keymaps = { + -- Open blame window + blame = "gb", + -- Open file/folder in git repository + browse = "go", + } +}) -- cgit v1.2.3