From 5b3d662dcbcaafb0ddacfcb367731cb746d773e2 Mon Sep 17 00:00:00 2001 From: marcvanheerden <11750833+marcvanheerden@users.noreply.github.com> Date: Thu, 21 Dec 2023 11:59:59 +0200 Subject: [PATCH] fix typo --- src/chapters/12-git.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chapters/12-git.md b/src/chapters/12-git.md index d2480ae..fe95d6e 100644 --- a/src/chapters/12-git.md +++ b/src/chapters/12-git.md @@ -5,7 +5,7 @@ I'll cover some of the plugins I use to manage my git through nvim, I recommend --- ## [Fugitive](https://github.com/tpope/vim-fugitive) -Provides the `:Git`/`:G` command which is a basiciliy sends the command to the git CLI and provides interactive window to work with. \ +Provides the `:Git`/`:G` command which basically sends the command to the git CLI and provides an interactive window to work with. \ E.g: `:G show HEAD`/`:Git show HEAD` The "main" feature of it is the interactive `status` window which can be triggered with `:G` with no params which provide a convenient way to see the diffs, stage files and commit changes.