adding fugitive

This commit is contained in:
2025-09-12 09:59:58 -04:00
parent c1e349cdce
commit 1ddbaa87bd
3 changed files with 49 additions and 12 deletions
+8 -9
View File
@@ -57,9 +57,6 @@ Neovim's configurations are located under the following paths, depending on your
so that you have your own copy that you can modify, then install by cloning the
fork to your machine using one of the commands below, depending on your OS.
> [!NOTE]
> Your fork's URL will be something like this:
> `https://github.com/<your_github_username>/kickstart.nvim.git`
You likely want to remove `lazy-lock.json` from your fork's `.gitignore` file
too - it's ignored in the kickstart repo to make maintenance easier, but it's
@@ -73,22 +70,24 @@ too - it's ignored in the kickstart repo to make maintenance easier, but it's
git clone https://github.com/CeeWeasel/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim
```
```sh
git clone https://gitea.clintweaver.com/clevergit/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim
```
</details>
<details><summary> Windows </summary>
If you're using `cmd.exe`:
```
git clone https://github.com/CeeWeasel/kickstart.nvim.git "%localappdata%\nvim"
```
If you're using `powershell.exe`
```
git clone https://github.com/CeeWeasel/kickstart.nvim.git "${env:LOCALAPPDATA}\nvim"
```
```
git clone https://gitea.clintweaver.com/clevergit/kickstart.nvim.git "${env:LOCALAPPDATA}\nvim"
```
</details>
### Post Installation