lazyvim/README.md

60 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

# My LazyVim Tamplate
2024-04-03 07:57:24 +02:00
The "source" teamplet and realy nice base template ( THX a lot ) [LazyVim](https://github.com/LazyVim/LazyVim).
2024-04-03 07:57:24 +02:00
Refer to the [documentation](https://lazyvim.github.io/installation) to get started.
2024-04-03 07:58:33 +02:00
## reaquires
2024-04-03 07:58:33 +02:00
- Neovim >= 0.9.2
- Git >= 2.19.0
- a Nerd Font (optional)
- a C compiler (gcc)
- ripgrep
- fd
2024-04-03 07:58:33 +02:00
## quickstart
2024-04-03 07:58:33 +02:00
```bash
## Debian && Ubuntu
apt install gcc git neovim
```
2024-04-03 07:58:33 +02:00
check your neovim and git versions
2024-04-03 07:58:33 +02:00
```bash
nvim -v && git -v
```
if not look here https://github.com/neovim/neovim/blob/master/INSTALL.md
## get started
```bash
# required
mv ~/.config/nvim{,.bak}
# optional but recommended
mv ~/.local/share/nvim{,.bak}
mv ~/.local/state/nvim{,.bak}
mv ~/.cache/nvim{,.bak}
```
Clone the lazyvim template
```bash
git clone https://git.altogether.at/rama/lazyvim ~/.config/nvim
```
Remove the .git folder, so you can add it to your own repo later
```bash
rm -rf ~/.config/nvim/.git
```
Start Neovim!
```bash
nvim
```
Refer to the comments in the files on how to customize LazyVim.