2023-01-22 15:45:13 +01:00
|
|
|
# 💤 LazyVim
|
2023-01-07 11:00:23 +01:00
|
|
|
|
2023-01-22 15:45:13 +01:00
|
|
|
A starter template for [LazyVim](https://github.com/LazyVim/LazyVim).
|
|
|
|
Refer to the [documentation](https://lazyvim.github.io/installation) to get started.
|
2023-10-11 15:42:01 +02:00
|
|
|
|
|
|
|
# 🛠️ Installation
|
|
|
|
|
|
|
|
## TL;DR
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git clone https://forge.chapril.org/michel_ouba/LazyVim.git ~/.config/nvim
|
|
|
|
```
|
|
|
|
|
|
|
|
## Make a backup of your current Neovim files:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# required
|
|
|
|
mv ~/.config/nvim{,.bak}
|
|
|
|
|
|
|
|
# optional but recommended
|
|
|
|
mv ~/.local/share/nvim{,.bak}
|
|
|
|
mv ~/.local/state/nvim{,.bak}
|
|
|
|
mv ~/.cache/nvim{,.bak}
|
|
|
|
```
|