26 lines
622 B
Markdown
26 lines
622 B
Markdown
# Neovim configuration
|
|
|
|
My personal user configuration for neovim. Using [AstroNvim](https://astronvim.com/), and based on its [default template](https://github.com/AstroNvim/template).
|
|
|
|
## 🛠️ Installation
|
|
|
|
#### Make a backup of your current nvim configuration and shared folder (or erase them)
|
|
|
|
```shell
|
|
mv ~/.config/nvim ~/.config/nvim.bak
|
|
mv ~/.local/share/nvim ~/.local/share/nvim.bak
|
|
mv ~/.local/state/nvim ~/.local/state/nvim.bak
|
|
mv ~/.cache/nvim ~/.cache/nvim.bak
|
|
```
|
|
|
|
#### Clone the repository
|
|
|
|
```shell
|
|
git clone https://github.com/Nirogu/nvim-config ~/.config/nvim
|
|
```
|
|
|
|
#### Start Neovim
|
|
|
|
```shell
|
|
nvim
|
|
```
|