2024-05-28 18:14:07 +02:00
2024-05-28 18:01:56 +02:00
2023-09-01 16:22:04 +02:00
2024-03-26 18:11:52 +01:00
2024-03-26 18:11:52 +01:00
2024-05-28 18:04:40 +02:00
2024-05-27 18:02:42 +02:00
2023-01-07 11:00:23 +01:00
2024-05-28 18:14:07 +02:00
2023-01-07 10:20:36 +01:00

💤 LazyVim

A starter template for LazyVim. Refer to the documentation to get started.

📦 Plugins

To see plugins added & removed in lazy-lock.json since last commit or 2 days ago:

diff -U30 \
  <(git show HEAD:lazy-lock.json | cut -d' ' -f-3) \
  <(cut -d' ' -f-3 lazy-lock.json)

diff -U30 \
  <(git show "@{2 days ago}:lazy-lock.json" | cut -d' ' -f-3) \
  <(cut -d' ' -f-3 lazy-lock.json)

To search for mentions of removed plugins:

for plugin in $(
  diff -U30 \
    <(git show "@{2 days ago}:lazy-lock.json" | cut -d' ' -f-3) \
    <(cut -d' ' -f-3 lazy-lock.json) |
  grep '^- ' |
  cut -d'"' -f2);
do echo "\n ❌ $plugin"; rg $plugin; done

🛠️ Installation

TL;DR

git clone https://forge.chapril.org/michel_ouba/LazyVim.git ~/.config/nvim
cd ~/.config/nvim
direnv allow

Make a backup of your current Neovim files

# required
mv ~/.config/nvim{,.bak}

# optional but recommended
mv ~/.local/share/nvim{,.bak}
mv ~/.local/state/nvim{,.bak}
mv ~/.cache/nvim{,.bak}
Description
Expérimentations avec LazyVim
https://www.lazyvim.org/
Readme 308 KiB
Languages
Lua 100%