Skip to content

Commit

Permalink
fix(docs): add uninstall instructions for windoze
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Feb 26, 2024
1 parent 05f6c59 commit 3172c15
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,26 @@ More advanced LSP setups can also be found in [Recipes](/recipes/advanced_lsp).

To uninstall Astronvim, simply run:

```bash
rm -rf ~/.config/nvim
rm -rf ~/.cache/nvim
rm -rf ~/.local/share/nvim
rm -rf ~/.local/state/nvim
<Tabs>

<TabItem value="nix" label="Linux/Mac OS (Unix)" default>

```sh
rm -rf ~/.config/nvim \
~/.local/share/nvim \
~/.local/state/nvim \
~/.cache/nvim
```

</TabItem>

<TabItem value="windoze" label="Windows (PowerShell)">

```powershell
Remove-Item $env:LOCALAPPDATA\nvim
Remove-Item $env:LOCALAPPDATA\nvim-data
```

</TabItem>

</Tabs>

0 comments on commit 3172c15

Please sign in to comment.