Expérimentations avec LazyVim https://www.lazyvim.org/
Go to file
2024-06-07 11:23:43 +02:00
lua feat(LazyVim): 12.4 2024-06-04 15:31:50 +02:00
.envrc chore(nodejs): upgrade to 22.2.0 2024-06-07 11:13:45 +02:00
.gitignore feat(node): provide node through ASDF 2023-09-01 20:44:46 +02:00
.neoconf.json refactor: sumneko -> lua_ls (#18) 2023-02-27 10:29:06 +01:00
.tool-versions chore(nodejs): upgrade to 22.2.0 2024-06-07 11:13:45 +02:00
init.lua chore(nodejs): upgrade to 22.2.0 2024-06-07 11:13:45 +02:00
lazy-lock.json feat(extra): mini.surround 2024-06-07 11:23:43 +02:00
lazyvim.json feat(extra): mini.surround 2024-06-07 11:23:43 +02:00
LICENSE docs: added readme and license 2023-01-07 11:00:23 +01:00
package-lock.json feat(node): provide node through ASDF 2023-09-01 20:44:46 +02:00
package.json feat(node): provide node through ASDF 2023-09-01 20:44:46 +02:00
README.md feat(LazyVim): 12.4 2024-06-04 15:31:50 +02:00
requirements.txt feat(pip): requires neovim-remote 2023-04-07 10:51:21 +02:00
stylua.toml feat: initial commit 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

Noice

🛠️ 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}