Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,21 @@ support:
git clone https://tpope.io/vim/fugitive.git
vim -u NONE -c "helptags fugitive/doc" -c q

Here's an example setup for `lazy`
```lua
return {
"tpope/vim-fugitive",
cmd = { "Git", "Gdiffsplit", "Gread", "Gwrite", "Ggrep", "GMove", "GDelete", "GBrowse" },
keys = {
{ "<leader>g", "<cmd>Git<cr>", desc = "Fugitive Git status" },
{ "<leader>gw", "<cmd>Git write<cr>", desc = "Fugitive Git status" },
{ "<leader>gc", "<cmd>Git commit<cr>", desc = "Fugitive Git status" },
{ "<leader>gf", "<cmd>Git pull<cr>", desc = "Fugitive Git status" },
{ "<leader>gp", "<cmd>Git push<cr>", desc = "Fugitive Git status" },
},
}
```

## FAQ

> What happened to the dispatch.vim backed asynchronous `:Gpush` and
Expand Down