summaryrefslogtreecommitdiff
path: root/lua/plugins/fugitive.lua
diff options
context:
space:
mode:
authorBenjamin Chaussé <Benjamin.Chausse@goto.com>2024-07-10 14:59:42 -0400
committerBenjamin Chaussé <Benjamin.Chausse@goto.com>2024-07-10 14:59:42 -0400
commit07abc0343bf1f6e2b93b24e3af8655ce81dd2b02 (patch)
tree1c286fed1d14d3de9f3773057329b20ff07d0a26 /lua/plugins/fugitive.lua
parentde2aaa7fd5a90a81de8d216232bb39830ff6041d (diff)
Stylua formatting + conform.nvim
Diffstat (limited to 'lua/plugins/fugitive.lua')
-rw-r--r--lua/plugins/fugitive.lua35
1 files changed, 16 insertions, 19 deletions
diff --git a/lua/plugins/fugitive.lua b/lua/plugins/fugitive.lua
index 6bb5190..71d7c0a 100644
--- a/lua/plugins/fugitive.lua
+++ b/lua/plugins/fugitive.lua
@@ -1,21 +1,18 @@
return {
- lazy = false,
- "tpope/vim-fugitive",
- dependencies = "tpope/vim-rhubarb",
- config = function()
-
- end,
- -- Only load when using one of the following commands:
- keys = {
- { "<leader>gs", "<cmd>G<CR>" }, -- G.it S.tatus
- { "<leader>gd", "<cmd>G difftool<CR>" }, -- G.it D.iff
- { "<leader>gm", "<cmd>Gvdiffsplit!<CR>" }, -- G.it M.erge
- { "<leader>gc", "<cmd>G commit<CR>" }, -- G.it C.ommit
- { "<leader>gu", "<cmd>G push<CR>" }, -- G.it push U.pstream
- { "<leader>gp", "<cmd>G pull<CR>" }, -- G.it P.ull
- { "<leader>gf", "<cmd>G fetch<CR>" }, -- G.it F.etch
- { "<leader>ds", "<cmd>Gvdiffsplit!<CR>" },
- { "<leader>dh", "<cmd>diffget //2<CR>" },
- { "<leader>dl", "<cmd>diffget //3<CR>" },
- },
+ lazy = false,
+ "tpope/vim-fugitive",
+ dependencies = "tpope/vim-rhubarb",
+ config = function() end,
+ -- Only load when using one of the following commands:
+ keys = {
+ { "<leader>gs", "<cmd>G<CR>" }, -- G.it S.tatus
+ { "<leader>gd", "<cmd>G difftool<CR>" }, -- G.it D.iff
+ { "<leader>gc", "<cmd>G commit<CR>" }, -- G.it C.ommit
+ { "<leader>gu", "<cmd>G push<CR>" }, -- G.it push U.pstream
+ { "<leader>gp", "<cmd>G pull<CR>" }, -- G.it P.ull
+ { "<leader>gf", "<cmd>G fetch<CR>" }, -- G.it F.etch
+ { "<leader>ds", "<cmd>Gvdiffsplit!<CR>" }, -- G.it D.iff S.plit
+ { "<leader>dh", "<cmd>diffget //2<CR>" },
+ { "<leader>dl", "<cmd>diffget //3<CR>" },
+ },
}